Fixed a bug in the debug UI causing a stacktrace. jsonrpc

Thu, 01 Sep 2016 18:28:27 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 01 Sep 2016 18:28:27 +0200
branch
jsonrpc
changeset 5123
d07dd3cf0dc3
parent 5120
c5189d404cc7
child 5124
1ba8ee313b57

Fixed a bug in the debug UI causing a stacktrace.
(grafted from d5d2cbf49daf801c42575fc2a8d07a1153f53286)

Debugger/DebugUI.py file | annotate | diff | comparison | revisions
--- a/Debugger/DebugUI.py	Wed Aug 31 19:55:49 2016 +0200
+++ b/Debugger/DebugUI.py	Thu Sep 01 18:28:27 2016 +0200
@@ -1364,7 +1364,7 @@
         
         from .EditWatchpointDialog import EditWatchpointDialog
         dlg = EditWatchpointDialog(
-            (cond, temp, enabled, count, special), self)
+            (cond, temp, enabled, count, special), self.ui)
         if dlg.exec_() == QDialog.Accepted:
             cond, temp, enabled, count, special = dlg.getData()
             

eric ide

mercurial