##// END OF EJS Templates
Small fix to docstring and qt example.
Fernando Perez -
Show More
@@ -132,6 +132,8 b' def start_event_loop_qt4(app=None):'
132 132 if app is None:
133 133 app = get_app_qt4([''])
134 134 if not is_event_loop_running_qt4(app):
135 from .inputhook import enable_qt4
136 #enable_qt4(app)
135 137 app._in_event_loop = True
136 138 app.exec_()
137 139 app._in_event_loop = False
@@ -259,8 +259,8 b' class InputHookManager(object):'
259 259 Parameters
260 260 ----------
261 261 app : toplevel :class:`Tkinter.Tk` widget, optional.
262 Running application to use. If not given, we probe Qt for an
263 existing application object, and create a new one if none is found.
262 Running toplevel widget to use. If not given, we probe Tk for an
263 existing one, and create a new one if none is found.
264 264
265 265 Notes
266 266 -----
General Comments 0
You need to be logged in to leave comments. Login now