7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-11 13:50:13 +00:00

Fix printout page orientation on GTK3

Fixes: lp:1803540
* https://bugs.launchpad.net/kicad/+bug/1803540
This commit is contained in:
Maciej Suminski 2018-11-16 09:52:17 +01:00
parent 8c8ccf83e6
commit 228ea64016

View File

@ -55,11 +55,11 @@ public:
bool HasNativeLandscapeRotation() const override
{
#ifdef __WXGTK__
#if defined(__WXGTK__) && !defined(__WXGTK3__)
return false;
#else
return true;
#endif /* not __WXGTK__ */
#endif
}
private: