Rearrange Facebook preferences dialogue to avoid rendering issues with
authorAndrew Flegg <andrew@bleb.org>
Mon, 7 Jun 2010 07:01:30 +0000 (08:01 +0100)
committerAndrew Flegg <andrew@bleb.org>
Mon, 7 Jun 2010 07:01:30 +0000 (08:01 +0100)
underfilled vbox.

package/src/org/maemo/hermes/engine/facebook/provider.py

index 9c84bbf..f9aafd7 100644 (file)
@@ -67,13 +67,11 @@ class Provider(org.maemo.hermes.engine.provider.Provider):
         dialog.add_button(_('Disable'), gtk.RESPONSE_NO)
         dialog.add_button(_('Enable'), gtk.RESPONSE_YES)
         
-        dialog.vbox.add(gtk.Label(_('Note: authentication via web page')))
-        
         checkbox = hildon.CheckButton(gtk.HILDON_SIZE_FINGER_HEIGHT)
         checkbox.set_label(_('Create birthday-only contacts'))
         checkbox.set_active(self._gc.get_bool('/apps/maemo/hermes/facebook_birthday_only'))
         dialog.vbox.add(checkbox)
-        dialog.vbox.add(gtk.Label(''))
+        dialog.vbox.add(gtk.Label("\n" + _('Note: authentication via web page') + "\n\n\n"))
         
         while True:
             dialog.show_all()