Create primary monitor when using wxDisplay default ctor

Previously, the first monitor was created instead and while it was often
also the primary one, this wasn't always the case.

In particular, this makes wxGetDisplayPPI() always return something
reasonable instead of returning (0, 0) when the first monitor is not the
primary one, as expected by plenty of code, including our own printing
sample, which divides by the values returned from wxGetDisplayPPI()
without checking if they're zero.
This commit is contained in:
Vadim Zeitlin
2019-11-08 00:26:20 +01:00
parent 46cb23b030
commit d8cd02b480
4 changed files with 40 additions and 5 deletions

View File

@@ -37,6 +37,9 @@ public:
return m_impls[n];
}
// Return the primary display object, creating it if necessary.
wxDisplayImpl* GetPrimaryDisplay();
// get the total number of displays
virtual unsigned GetCount() = 0;