event called pressing on OK button. propagates the string content of the input field
(self, widget)
| 3950 | @decorate_set_on_listener("(self, emitter, fileList)") |
| 3951 | @decorate_event |
| 3952 | def confirm_value(self, widget): |
| 3953 | """event called pressing on OK button. |
| 3954 | propagates the string content of the input field |
| 3955 | """ |
| 3956 | self.hide() |
| 3957 | params = (self.fileFolderNavigator.get_selection_list(),) |
| 3958 | return params |
| 3959 | |
| 3960 | |
| 3961 | class MenuBar(Container): |
nothing calls this directly
no test coverage detected