47 self.__plugin.setPreferences("PullUpdate", self.pullUpdateCheckBox.isChecked()) |
47 self.__plugin.setPreferences("PullUpdate", self.pullUpdateCheckBox.isChecked()) |
48 |
48 |
49 @pyqtSlot() |
49 @pyqtSlot() |
50 def on_configButton_clicked(self): |
50 def on_configButton_clicked(self): |
51 """ |
51 """ |
52 Private slot to edit the (per user) Mercurial config file. |
52 Private slot to edit the (per user) Mercurial configuration file. |
53 """ |
53 """ |
54 cfgFile = self.__plugin.getConfigPath() |
54 cfgFile = self.__plugin.getConfigPath() |
55 editor = MiniEditor(cfgFile, "Properties", self) |
55 editor = MiniEditor(cfgFile, "Properties", self) |
56 editor.show() |
56 editor.show() |