* src/ViewManager.py: new config changes, handle exception

svn: r6442
This commit is contained in:
Don Allingham 2006-04-26 02:14:37 +00:00
parent ad80306897
commit fdada9fe16
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,5 @@
2006-04-25 Don Allingham <don@gramps-project.org>
* src/ViewManager.py: new config changes
* src/ViewManager.py: new config changes, handle exception
* src/GrampsCfg.py: new config changes
* src/Config/gen_schema_keys.py: new config changes
* src/gramps_main.py: new config changes

View File

@ -424,7 +424,10 @@ class ViewManager:
GrampsDisplay.url( const.url_mailinglist)
def preferences_activate(self, obj):
GrampsCfg.GrampsPreferences(self.uistate)
try:
GrampsCfg.GrampsPreferences(self.uistate)
except Errors.WindowActiveError:
pass
def report_bug_activate(self, obj):
import GrampsDisplay