Skip to content
Snippets Groups Projects
Commit 3d66286d authored by Enrico Tröger's avatar Enrico Tröger
Browse files

Add some border spaces in the preferences dialog for better look&feel.

(Old svn revision: 5124)
parent 9b8fc78f
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
* Build the static library part with libtool to get correctly linked
(fixes #4235).
* Add some border spaces in the preferences dialog for better look&feel.
2008-05-16 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
......
......@@ -235,6 +235,7 @@ GtkWidget *dict_prefs_dialog_show(GtkWidget *parent, DictData *dd)
notebook_vbox = gtk_vbox_new(FALSE, 2);
gtk_widget_show(notebook_vbox);
inner_vbox = gtk_vbox_new(FALSE, 5);
gtk_container_set_border_width(GTK_CONTAINER(inner_vbox), 5);
gtk_widget_show(inner_vbox);
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), notebook_vbox, gtk_label_new(_("General")));
......@@ -337,6 +338,7 @@ GtkWidget *dict_prefs_dialog_show(GtkWidget *parent, DictData *dd)
notebook_vbox = gtk_vbox_new(FALSE, 2);
gtk_widget_show(notebook_vbox);
inner_vbox = gtk_vbox_new(FALSE, 5);
gtk_container_set_border_width(GTK_CONTAINER(inner_vbox), 5);
gtk_widget_show(inner_vbox);
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), notebook_vbox, gtk_label_new(_("Dict")));
......@@ -444,6 +446,7 @@ GtkWidget *dict_prefs_dialog_show(GtkWidget *parent, DictData *dd)
notebook_vbox = gtk_vbox_new(FALSE, 5);
gtk_widget_show(notebook_vbox);
inner_vbox = gtk_vbox_new(FALSE, 5);
gtk_container_set_border_width(GTK_CONTAINER(inner_vbox), 5);
gtk_widget_show(inner_vbox);
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), notebook_vbox, gtk_label_new(_("Web")));
......@@ -491,6 +494,7 @@ GtkWidget *dict_prefs_dialog_show(GtkWidget *parent, DictData *dd)
notebook_vbox = gtk_vbox_new(FALSE, 5);
gtk_widget_show(notebook_vbox);
inner_vbox = gtk_vbox_new(FALSE, 5);
gtk_container_set_border_width(GTK_CONTAINER(inner_vbox), 5);
gtk_widget_show(inner_vbox);
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), notebook_vbox, gtk_label_new(_("Aspell")));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment