From 377750f4c1a3a94bc896acea2d1170d6ff40a584 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Sat, 3 May 2003 14:16:59 +0000 Subject: [PATCH] Handle redraw of the display after a tool is run svn: r1489 --- src/gramps_main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gramps_main.py b/src/gramps_main.py index 22d2001ad..9c0979f9c 100755 --- a/src/gramps_main.py +++ b/src/gramps_main.py @@ -641,6 +641,7 @@ class Gramps: def tool_callback(self,val): if val: Utils.modified() + self.alpha_page = {} self.full_update() def full_update(self): @@ -1540,6 +1541,7 @@ class Gramps: """Call the import plugin""" plugin_function(self.db,self.active_person,self.tool_callback) self.topWindow.set_title("%s - GRAMPS" % self.db.getSavePath()) + self.full_update() def on_preferences_activate(self,obj): GrampsCfg.display_preferences_box(self.db)