124 def __about(self): |
126 def __about(self): |
125 """ |
127 """ |
126 Private slot to handle the About dialog. |
128 Private slot to handle the About dialog. |
127 """ |
129 """ |
128 from AboutPlugin.AboutDialog import AboutDialog |
130 from AboutPlugin.AboutDialog import AboutDialog |
129 dlg = AboutDialog(self.__ui) |
131 if self.__aboutDialog is None: |
130 dlg.exec_() |
132 self.__aboutDialog = AboutDialog(self.__ui) |
|
133 self.__aboutDialog.show() |
131 |
134 |
132 def __aboutQt(self): |
135 def __aboutQt(self): |
133 """ |
136 """ |
134 Private slot to handle the About Qt dialog. |
137 Private slot to handle the About Qt dialog. |
135 """ |
138 """ |