eric6/Tools/TrayStarter.py

changeset 7759
51aa6c6b66f7
parent 7533
88261c96484b
child 7761
ed2c67d20328
equal deleted inserted replaced
7758:dd54d33d21d2 7759:51aa6c6b66f7
476 None, 'Configuration', True, fromEric=True, 476 None, 'Configuration', True, fromEric=True,
477 displayMode=ConfigurationDialog.TrayStarterMode) 477 displayMode=ConfigurationDialog.TrayStarterMode)
478 dlg.preferencesChanged.connect(self.preferencesChanged) 478 dlg.preferencesChanged.connect(self.preferencesChanged)
479 dlg.show() 479 dlg.show()
480 dlg.showConfigurationPageByName("trayStarterPage") 480 dlg.showConfigurationPageByName("trayStarterPage")
481 dlg.exec_() 481 dlg.exec()
482 QApplication.processEvents() 482 QApplication.processEvents()
483 if dlg.result() == QDialog.Accepted: 483 if dlg.result() == QDialog.Accepted:
484 dlg.setPreferences() 484 dlg.setPreferences()
485 Preferences.syncPreferences() 485 Preferences.syncPreferences()
486 self.preferencesChanged() 486 self.preferencesChanged()
497 """ 497 """
498 Private slot to handle the About dialog. 498 Private slot to handle the About dialog.
499 """ 499 """
500 from Plugins.AboutPlugin.AboutDialog import AboutDialog 500 from Plugins.AboutPlugin.AboutDialog import AboutDialog
501 dlg = AboutDialog() 501 dlg = AboutDialog()
502 dlg.exec_() 502 dlg.exec()
503 503
504 def __showVersions(self): 504 def __showVersions(self):
505 """ 505 """
506 Private slot to handle the Versions dialog. 506 Private slot to handle the Versions dialog.
507 """ 507 """

eric ide

mercurial