add destroy function to CommonInputDialog class. Fixes #7092
This commit is contained in:
parent
d0388c2fc5
commit
5bdd9da51d
|
@ -1937,6 +1937,9 @@ class CommonInputDialog:
|
||||||
def on_cancelbutton_clicked(self, widget):
|
def on_cancelbutton_clicked(self, widget):
|
||||||
self.dialog.destroy()
|
self.dialog.destroy()
|
||||||
|
|
||||||
|
def destroy(self):
|
||||||
|
self.dialog.destroy()
|
||||||
|
|
||||||
class InputDialog(CommonInputDialog):
|
class InputDialog(CommonInputDialog):
|
||||||
"""
|
"""
|
||||||
Class for Input dialog
|
Class for Input dialog
|
||||||
|
|
Loading…
Reference in New Issue