From 35bc7024d0f2f9d2177dac5113d23efeb2a43bb9 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Mon, 13 Aug 2012 22:55:21 +0000 Subject: [PATCH] Fix Gtk3 conversion error svn: r20203 --- src/plugins/gramplet/editexifmetadata.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/plugins/gramplet/editexifmetadata.py b/src/plugins/gramplet/editexifmetadata.py index 48cbdb7f5..4f02c067e 100644 --- a/src/plugins/gramplet/editexifmetadata.py +++ b/src/plugins/gramplet/editexifmetadata.py @@ -275,13 +275,13 @@ class EditExifMetadata(Gramplet): # Displays the file name medialabel = Gtk.HBox(False, 0) label = self.__create_label("MediaLabel", False, False, False) - medialabel.pack_start(label, expand =False) + medialabel.pack_start(label, expand =False, fill =True, padding =0) main_vbox.pack_start(medialabel, expand =False, fill =True, padding =0) # Displays mime type information mimetype = Gtk.HBox(False, 0) label = self.__create_label("MimeType", False, False, False) - mimetype.pack_start(label, expand =False) + mimetype.pack_start(label, expand =False, fill =True, padding =0) main_vbox.pack_start(mimetype, expand =False, fill =True, padding =0) # image dimensions @@ -293,11 +293,11 @@ class EditExifMetadata(Gramplet): # Displays all plugin messages messagearea = Gtk.HBox(False, 0) label = self.__create_label("MessageArea", False, False, False) - messagearea.pack_start(label, expand =False) + messagearea.pack_start(label, expand =False, fill =True, padding =0) main_vbox.pack_start(messagearea, expand =False, fill =True, padding =0) # Separator line before the buttons - main_vbox.pack_start(Gtk.HSeparator(, True, True, 0), expand =False, fill =False, padding =0) + main_vbox.pack_start(Gtk.HSeparator(), expand =False, fill =False, padding =0) # Thumbnail, ImageType, and Convert buttons new_hbox = Gtk.HBox(False, 0) @@ -361,7 +361,7 @@ class EditExifMetadata(Gramplet): main_vbox.pack_start(self.view, expand =False, fill =True, padding =5) # Separator line before the Total - main_vbox.pack_start(Gtk.HSeparator(, True, True, 0), expand =False, fill =True, padding =5) + main_vbox.pack_start(Gtk.HSeparator(), expand =False, fill =True, padding =5) # number of key/ value pairs shown label = self.__create_label("Total", False, False, False)