💥 ags(popup-window): fix trying to close bgWindow twice
This commit is contained in:
@@ -34,9 +34,7 @@ export function PopupWindow(props: PopupWindowProps): Widget.Window {
|
|||||||
},
|
},
|
||||||
onKeyPressEvent: (self, event: Gdk.Event) => {
|
onKeyPressEvent: (self, event: Gdk.Event) => {
|
||||||
if(event.get_keyval()[1] === Gdk.KEY_Escape) {
|
if(event.get_keyval()[1] === Gdk.KEY_Escape) {
|
||||||
bgWindow.close();
|
|
||||||
self.close();
|
self.close();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user