event called pressing on OK button.
(self, emitter)
| 379 | |
| 380 | @gui.decorate_event |
| 381 | def confirm_dialog(self, emitter): |
| 382 | """event called pressing on OK button. |
| 383 | """ |
| 384 | # here the user input is transferred to the dict, ready to use |
| 385 | self.from_fields_to_dict() |
| 386 | return super(ProjectConfigurationDialog, self).confirm_dialog(self) |
| 387 | |
| 388 | def show(self, baseAppInstance): |
| 389 | """Allows to show the widget as root window""" |
nothing calls this directly
no test coverage detected