From 66d8cff3c27d843a2b2b4e669565d0c1f8a97dd2 Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Tue, 3 Jun 2008 03:24:00 -0700 Subject: [PATCH] stash: don't close the gui on "Remove All" Signed-off-by: David Aguilar --- ugit/controllers/stash.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ugit/controllers/stash.py b/ugit/controllers/stash.py index 7dadfd6..abf542f 100644 --- a/ugit/controllers/stash.py +++ b/ugit/controllers/stash.py @@ -114,9 +114,5 @@ class StashController(QObserver): 'Continue?')) if not answer: return - qtutils.log( - self.model.stash("clear"), - quiet=False, - doraise=True - ) - self.view.accept() + self.model.stash("clear"), + self.update_model() -- 2.11.4.GIT