event called pressing on OK button. propagates the string content of the input field
(self, widget)
| 433 | |
| 434 | @gui.decorate_event |
| 435 | def confirm_value(self, widget): |
| 436 | """event called pressing on OK button. |
| 437 | propagates the string content of the input field |
| 438 | """ |
| 439 | self.hide() |
| 440 | params = (self.fileFolderNavigator.pathEditor.get_text(),) |
| 441 | return params |
| 442 | |
| 443 | |
| 444 | def default_icon(name, view_w=1, view_h=0.6): |
no test coverage detected