* src/DisplayTabs.py (NoteTab.build_interface): Add spacing to

radiobuttons.


svn: r6542
This commit is contained in:
Alex Roitman 2006-05-04 04:53:55 +00:00
parent 2884c076bf
commit 33490899c4
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,6 @@
2006-05-03 Alex Roitman <shura@gramps-project.org>
* src/DisplayTabs.py (NoteTab.build_interface): Add spacing to
radiobuttons.
* src/plugins/ReorderIds.py (ReorderIds.reorder): Switch from
cursors to keys iteration.

View File

@ -1457,9 +1457,11 @@ class NoteTab(GrampsTab):
vbox.pack_start(scroll, True)
vbox.set_spacing(6)
vbox.set_border_width(6)
hbox = gtk.HBox()
hbox.set_spacing(6)
hbox.set_spacing(12)
hbox.set_border_width(6)
hbox.pack_start(self.flowed, False)
hbox.pack_start(self.format, False)