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
1 changed files with 2 additions and 2 deletions

View File

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