diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2016-12-25 23:40:07 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2016-12-25 23:40:07 +0000 |
commit | 5e761f5d93077b2e43e24b42dc2f2b4327372cbf (patch) | |
tree | c3307e71838dd43ab756758a7344c53d4c849348 /ui/graphicsui.sh | |
parent | a11db1a67423810f3c88db9b6ce2703e8cb47792 (diff) |
kill any running operation if worker window is closed
Diffstat (limited to 'ui/graphicsui.sh')
-rwxr-xr-x | ui/graphicsui.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/graphicsui.sh b/ui/graphicsui.sh index 8730af9..df91404 100755 --- a/ui/graphicsui.sh +++ b/ui/graphicsui.sh @@ -33,11 +33,13 @@ export local graphicsui=' <hbox space-expand="false" space-extend="false"> <button space-expand="true" space-extend="true" label-text="install"> <label>Install package</label> - <action>epkg autoinstall $graphics|$showdialog</action> + <action signal="button-press-event">epkg autoinstall $graphics|$showdialog</action> + <action signal="button-release-event">$abortnow</action> </button> <button space-expand="true" space-extend="true" label-text="uninstall"> <label>Uninstall package</label> - <action>epkg autoremove $graphics|$showdialog</action> + <action signal="button-press-event">epkg autoremove $graphics|$showdialog</action> + <action signal="button-release-event">$abortnow</action> </button> <button space-expand="true" space-extend="true" label-text="home"> <label>Back home</label> |