diff pyntnclick/widgets/__init__.py @ 658:2703924c8c70 pyntnclick

Custom mouse cursors return
author Stefano Rivera <stefano@rivera.za.net>
date Sun, 12 Feb 2012 14:25:27 +0200
parents 2748d3afcae5
children 506568326790
line wrap: on
line diff
--- a/pyntnclick/widgets/__init__.py	Sun Feb 12 14:04:52 2012 +0200
+++ b/pyntnclick/widgets/__init__.py	Sun Feb 12 14:25:27 2012 +0200
@@ -13,7 +13,6 @@
 from pygame import mouse
 
 from pyntnclick.widgets.base import Widget
-from pyntnclick.cursor import CursorWidget
 
 # XXX: Need a way to get at the constants.
 from pyntnclick.constants import GameConstants
@@ -105,7 +104,7 @@
             ], w)
 
 
-class MessageDialog(BoomLabel, CursorWidget):
+class MessageDialog(Widget):  # WAS: BoomLabel, CursorWidget):
 
     def __init__(self, screen, text, wrap_width, style=None, **kwds):
         CursorWidget.__init__(self, screen)