Hi all,
A few months, I posted an issue about fullscreen mode using WX backend.
It works fine.
I want to get fullscreen mode using Qt4 backend.
Here's the snippet code:
if (ETSConfig.toolkit == 'wx'): # works fine
self.frame = wx.Frame(None, -1)
self.frame.Show(True)
self.frame.ShowFullScreen(True)
elif (ETSConfig.toolkit == 'qt4'):
self.frame = QtGui.QWidget()
self.frame.showFullScreen()
hplot_container = HPlotContainer(...)
Window(self.frame, component=hplot_container) # Window from enable
What I get using QT4 backend is only an empty window, no plot in it :-/
What am I doing wrong?
TIA.
Cheers,
--
Fred
_______________________________________________
Enthought-Dev mailing list
[hidden email]
https://mail.enthought.com/mailman/listinfo/enthought-dev