On Tue, Mar 16, 2010 at 11:01 AM, Edward K. Ream <[email protected]> wrote:
>> Yes, but I'd say the similarities between code bubbles and the stickynotes
>> plugin is even greater. I think the bubbles idea is to see multiple
>> snippets of code simultaneously, which is what you can do with the
>> stickynotes plugin.
>
> Ok. I think it's time to learn about this plugin :-)
That was easy :-) However, the plugin does not work with Python 3.x.
Could you update it? You probably want to base the imports on the
qtGui.py plugin:
try:
import PyQt4.QtCore as QtCore
import PyQt4.QtGui as QtGui
except ImportError:
QtCore = None
if QtCore is None:
try: # Attempt Python 3000 imports
from PyQt4 import QtCore
except ImportError:
QtCore = None
print('\nqtGui.py: can not import Qt\nUse "launchLeo.py
--gui=tk" to force Tk')
raise
And then take it from there...
Edward
--
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.