On Wed, Aug 26, 2009 at 7:24 AM, rhh<[email protected]> wrote:
> 2) the ipython bridge crashes the leo gui right away (when invoked > with start-ipython) while keeping ipython and the connection active in > the terminal window. I'm adding this here since you are not subscribed to bug ( https://bugs.launchpad.net/leo-editor/+bug/419466 ) QQQ This probably works ok if you don't have PyQt installed (or don't add any plugins that use Qt). Ensure that your @enabled-plugins doesn't enable any qt specific plugins (the default @enabled-plugins does). This needs to be fixed properly by preventing Qt imports when running tk, and vice versa QQQ On trunk, we should enforce the tk / qt segregation by doing all tk / qt imports by from leo.core.qtimports import * OR from leo.core.tkimports import * Those modules would import all the important modules (QtGui, QtCore, ...). They would also check the --gui specification and raise ImportError if the "wrong" gui is selected. -- Ville M. Vainio http://tinyurl.com/vainio --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "leo-editor" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/leo-editor?hl=en -~----------~----~----~----~------~----~------~--~---
