Re: Window title is not accessible
M A <[email protected]>
| Newsgroups | gmane.comp.python.wxglade |
|---|---|
| Message-ID | <[email protected]> |
> On Apr 7, 2019, at 12:19 PM, Igor Korot <[email protected]> wrote: > > Hi, > As I wrote in one of my previous e-mails after switching branches > wxGlade title bar on my OSX become un-accessible. > > Please see the screenshot. > > Do you see the same issue? > > Thank you. > <Screen Shot 2019-04-07 at 11.12.54 AM.png><Screen Shot 2019-04-07 at 11.13.44 AM.png>_______________________________________________ I think I know what is wrong. You are using a laptop which probably has a max resolution 1280x800. Since it looks like wxGlade's window is taller than your screen, the top is clipped. Could you run this program and tell me what it outputs: import wx app = wx.App(False) width, height = wx.GetDisplaySize() print("Resolution: " + str(width) + "x" + str(height)) If your laptop's screen is too small, then a simple fix would be to detect when the resolution is low and resize wxGlade's window accordingly.