diff options
-rw-r--r-- | gurpm.pm | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -73,7 +73,9 @@ sub invalidate_cancel { } sub invalidate_cancel_forever { - $hbox_cancel and $hbox_cancel->destroy; + $hbox_cancel or return; + $hbox_cancel->destroy; + $mainw->shrink_topwindow; } 1; |