Re-adjusted column widths to display information easier to see.

svn: r17653
This commit is contained in:
Rob G. Healey 2011-06-02 03:50:48 +00:00
parent 6d033a752e
commit a918c8a18d

View File

@ -344,9 +344,7 @@ class EditExifMetadata(Gramplet):
db = self.dbstate.db
# clears all labels and display area...
for widget in ["MediaLabel", "MimeType", "MessageArea"]:
self.exif_widgets[widget].set_text("")
self.model.clear()
self.clear_display(self.plugin_image)
# set Message Ares to Select...
self.exif_widgets["MessageArea"].set_text(_("Select an image to view it's Exif metadata..."))
@ -617,8 +615,8 @@ class EditExifMetadata(Gramplet):
"""
top = gtk.TreeView()
titles = [(_('Key'), 1, 190),
(_('Value'), 2, 360)]
titles = [(_('Key'), 1, 180),
(_('Value'), 2, 310)]
self.model = ListModel(top, titles)
return top