eric6/QScintilla/MiniEditor.py

changeset 7820
acb71bb4e901
parent 7775
4a1db75550bd
child 7836
2f0d208b8137
equal deleted inserted replaced
7817:a43dc53c7e4a 7820:acb71bb4e901
3788 """ 3788 """
3789 Private method to handle the zoom action. 3789 Private method to handle the zoom action.
3790 """ 3790 """
3791 from QScintilla.ZoomDialog import ZoomDialog 3791 from QScintilla.ZoomDialog import ZoomDialog
3792 dlg = ZoomDialog(self.getZoom(), self, None, True) 3792 dlg = ZoomDialog(self.getZoom(), self, None, True)
3793 if dlg.exec_() == QDialog.Accepted: 3793 if dlg.exec() == QDialog.Accepted:
3794 value = dlg.getZoomSize() 3794 value = dlg.getZoomSize()
3795 self.__zoomTo(value) 3795 self.__zoomTo(value)
3796 3796
3797 def __zoomTo(self, value): 3797 def __zoomTo(self, value):
3798 """ 3798 """

eric ide

mercurial