From 17dc7f7d230a8ae7d44a36e2fd6471eb6bf40411 Mon Sep 17 00:00:00 2001 From: Paul Culley Date: Wed, 31 Jul 2019 16:47:18 -0500 Subject: [PATCH] Fix Preferences dialog so General tab appears first, not Symbols (#844) Fixes #11210 --- gramps/gui/configure.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gramps/gui/configure.py b/gramps/gui/configure.py index 62b68335a..1a42dd452 100644 --- a/gramps/gui/configure.py +++ b/gramps/gui/configure.py @@ -2187,7 +2187,8 @@ class GrampsPreferences(ConfigureDialog): my_characters + "") self.grid.attach(text, 1, 8, 8, 1) - self.grid.show_all() + scrollw.show_all() + text.show_all() def stop_looking_for_font(self, *args, **kwargs): self.progress.close()