Found another bug:


Qt Code:
  1. minX_(numeric_limits<double>::max()),
  2. maxX_(numeric_limits<double>::min()),
  3. minY_(numeric_limits<double>::max()),
  4. maxY_(numeric_limits<double>::min()),
To copy to clipboard, switch view to plain text mode 

Has to be replaced with:

Qt Code:
  1. minX_(numeric_limits<double>::max()),
  2. maxX_(-numeric_limits<double>::max()),
  3. minY_(numeric_limits<double>::max()),
  4. maxY_(-numeric_limits<double>::max()),
To copy to clipboard, switch view to plain text mode 

I think I will stop posting bugfixes here , except if some1 really is interested, because it always bumps the thread.