# HG changeset patch # User Neil Muller # Date 1359380911 -7200 # Node ID 80ff3c9187bc4b00851aa85ba8faa8de422e040b # Parent 8b4a0aad8aeb28daa0f88cc765cb1711c9c04c8b Rename InteractText to InteractDebugText to better reflect it's aim diff -r 8b4a0aad8aeb -r 80ff3c9187bc pyntnclick/scenewidgets.py --- a/pyntnclick/scenewidgets.py Mon Jan 28 15:46:22 2013 +0200 +++ b/pyntnclick/scenewidgets.py Mon Jan 28 15:48:31 2013 +0200 @@ -34,7 +34,7 @@ super(InteractNoImage, self).__init__(None, None, Rect(x, y, w, h)) -class InteractText(Interact): +class InteractDebugText(Interact): """Display box with text to interact with -- mostly for debugging.""" def __init__(self, x, y, text, bg_color=None): @@ -49,7 +49,7 @@ image = Surface(label.size) rect = Rect((x, y), label.size) label.draw_all(image) - super(InteractText, self).__init__(image, rect, rect) + super(InteractDebugText, self).__init__(image, rect, rect) class InteractRectUnion(Interact):