-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GUI doesn't look so good with the wxpython backend in MayaVi #60
Comments
This is fundamentally a mayavi bug: https://mail.enthought.com/pipermail/enthought-dev/2013-December/032710.html |
If you export this environment variable before loading yeadon you can force the GUI backend to be what you like: export ETS_TOOLKIT='qt4' |
Can yeadon override the backend setting? |
If you export that environment variable then it can use an alternative backend. The default is wx (at least in Ubuntu). |
You could also set the environment variable in the software if the qt4 lib is available. But you need to check for pyqt first I guess. |
Something like this as the top of gui.py might be good: try:
import pyface.qt
except ImportError:
pass
else:
import os
os.environ['ETS_TOOLKIT'] = 'qt4' |
But this is not really our bug. It is a bug for MayaVi, Traits, Envisage, Ubuntu, etc. |
What should we do about this? |
|
The background is dark and the font colors for the text are dark. Maybe there are some default settings that would make it look better.
The text was updated successfully, but these errors were encountered: