From 2bd11661e3d771caee92b1b106a8c9eb740c5823 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Wed, 14 Jul 2010 18:54:31 +0200 Subject: [PATCH] for now revert "comment out close of fpdb after db recreate, I don't see how it helps" I could reproduce the bug so until its fixed I want to keep the quit-on-recreate This reverts commit 45fa170758dd72409349bf44803730594b4386d7. --- pyfpdb/fpdb.pyw | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index cce592e2..4efaaa64 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -416,18 +416,12 @@ class fpdb: # TODO: figure out why this seems to be necessary dia_restart = gtk.MessageDialog(parent=self.window, flags=0, type=gtk.MESSAGE_WARNING, buttons=(gtk.BUTTONS_OK), message_format="Restart fpdb") - - # sc: I don't see the need for this closedown - if it is a problem let me know - # and I will look into it .... (if there is a problem with db re-create I - # would expect it to be before here, i.e. maybe user needs to restart before - # the re-create. Once here everything should be ok.) - # The recreate will not work if autoimport is running! Other than that it - # should work. - #diastring = "Fpdb now needs to close. Please restart it." - #dia_restart.format_secondary_text(diastring) - #dia_restart.run() - #dia_restart.destroy() - #self.quit(None, None) + diastring = "Fpdb now needs to close. Please restart it." + dia_restart.format_secondary_text(diastring) + + dia_restart.run() + dia_restart.destroy() + self.quit(None, None) elif response == gtk.RESPONSE_NO: self.release_global_lock() print 'User cancelled recreating tables'