Hi all,
I'm looking at creating an application for Linux and I'm running into a problem. Some of the themes remove the close/minimuze/maximize buttons in a dialog!
Steps to repro:
1. Log into gnome 3 and select a theme like Adwaita or High Contrast.
2. Run the following script:
import wx
class MyApp(wx.App):
def OnInit(self):
wx.MessageBox("Hello wxPython", "wxApp")
return True
if __name__ == "__main__":
app = MyApp(False)
app.MainLoop()
You can see in the screenshots I've attached the difference. Any suggestions to force show the buttons? Has anyone else seen this issue?
Any help appreciated.
Thanks much,
-R