7147 7001: Merge person dialog does not properly adjust context section after expand

This commit is contained in:
Jérôme Rapinat 2013-12-17 15:10:48 +01:00
parent 56965d4095
commit 46b3c44916
2 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@
<property name="can_focus">False</property>
<property name="modal">True</property>
<property name="default_width">700</property>
<property name="default_height">400</property>
<property name="type_hint">dialog</property>
<child internal-child="vbox">
<object class="GtkBox" id="dialog-vbox1">

View File

@ -78,7 +78,7 @@ class MergePerson(ManagedWindow):
Displays a dialog box that allows the persons to be combined into one.
"""
def __init__(self, dbstate, uistate, handle1, handle2, cb_update=None,
expand_context_info=False):
expand_context_info=True):
ManagedWindow.__init__(self, uistate, [], self.__class__)
self.database = dbstate.db
self.pr1 = self.database.get_person_from_handle(handle1)