MiniEditor: changed exec_() to exec(). multi_processing

Sat, 31 Oct 2020 12:19:44 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 31 Oct 2020 12:19:44 +0100
branch
multi_processing
changeset 7819
d0e9c4cb2aa0
parent 7818
5c9271c2f662
child 7853
35dcac32984a

MiniEditor: changed exec_() to exec().

eric6/QScintilla/MiniEditor.py file | annotate | diff | comparison | revisions
--- a/eric6/QScintilla/MiniEditor.py	Sat Oct 31 12:18:29 2020 +0100
+++ b/eric6/QScintilla/MiniEditor.py	Sat Oct 31 12:19:44 2020 +0100
@@ -3790,7 +3790,7 @@
         """
         from QScintilla.ZoomDialog import ZoomDialog
         dlg = ZoomDialog(self.getZoom(), self, None, True)
-        if dlg.exec_() == QDialog.Accepted:
+        if dlg.exec() == QDialog.Accepted:
             value = dlg.getZoomSize()
             self.__zoomTo(value)
         

eric ide

mercurial