2005-12-06 [paul] 1.9.100cvs69
[claws.git] / src / plugins / dillo_viewer / dillo_prefs.c
index a6b9a5ea28a3bcc78552bab636b9a2403f1bf62e..65edec3e55ce158ec8098a4c2695ab18b756cdd7 100644 (file)
@@ -14,7 +14,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 /*
@@ -33,6 +33,7 @@
 #include <glib/gi18n.h>
 #include <gtk/gtk.h>
 
+#include "gtkutils.h"
 #include "utils.h"
 #include "prefs.h"
 #include "prefs_gtk.h"
@@ -71,7 +72,7 @@ void dillo_prefs_init(void)
        static gchar *path[3];
        gchar *rcpath;
 
-       path[0] = _("Message View");
+       path[0] = _("Plugins");
        path[1] = _("Dillo Browser");
        path[2] = NULL;
 
@@ -107,7 +108,7 @@ static void create_dillo_prefs_page(PrefsPage *page,
        GtkTooltips *full_tooltip;
 
         vbox = gtk_vbox_new(FALSE, 3);
-        gtk_container_set_border_width(GTK_CONTAINER(vbox), 3);
+        gtk_container_set_border_width(GTK_CONTAINER(vbox), VBOX_BORDER);
         gtk_widget_show(vbox);
         
        local_tooltip = gtk_tooltips_new();
@@ -123,6 +124,8 @@ static void create_dillo_prefs_page(PrefsPage *page,
        label = gtk_label_new(_("You can still load remote links "
                              "by reloading the page"));
         gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
+       gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
+       gtkut_widget_set_small_font_size (label);
         gtk_widget_show(label);
 
        full_tooltip = gtk_tooltips_new();