61 @type QAbstractButton |
61 @type QAbstractButton |
62 """ |
62 """ |
63 if button == self.buttonBox.button(QDialogButtonBox.Close): |
63 if button == self.buttonBox.button(QDialogButtonBox.Close): |
64 self.accept() |
64 self.accept() |
65 elif button == self.buttonBox.button(QDialogButtonBox.Cancel): |
65 elif button == self.buttonBox.button(QDialogButtonBox.Cancel): |
66 self.__finish() |
66 self.__finish(1, 0) |
67 |
67 |
68 def start(self, arguments): |
68 def start(self, arguments): |
69 """ |
69 """ |
70 Public slot to start the conda command. |
70 Public slot to start the conda command. |
71 |
71 |