List some tool items in Preferences
This commit is contained in:
parent
fa9becaf83
commit
26ac7a379d
1 changed files with 9 additions and 2 deletions
|
@ -401,15 +401,22 @@ midori_preferences_set_settings (MidoriPreferences* preferences,
|
||||||
/* Page "Interface" */
|
/* Page "Interface" */
|
||||||
PAGE_NEW (GTK_STOCK_CONVERT, _("Interface"));
|
PAGE_NEW (GTK_STOCK_CONVERT, _("Interface"));
|
||||||
FRAME_NEW (_("Navigationbar"));
|
FRAME_NEW (_("Navigationbar"));
|
||||||
TABLE_NEW (3, 2);
|
TABLE_NEW (4, 2);
|
||||||
INDENTED_ADD (katze_property_label (settings, "toolbar-style"), 0, 1, 0, 1);
|
INDENTED_ADD (katze_property_label (settings, "toolbar-style"), 0, 1, 0, 1);
|
||||||
button = katze_property_proxy (settings, "toolbar-style", NULL);
|
button = katze_property_proxy (settings, "toolbar-style", NULL);
|
||||||
FILLED_ADD (button, 1, 2, 0, 1);
|
FILLED_ADD (button, 1, 2, 0, 1);
|
||||||
INDENTED_ADD (katze_property_label (settings, "toolbar-items"), 0, 1, 1, 2);
|
INDENTED_ADD (katze_property_label (settings, "toolbar-items"), 0, 1, 1, 2);
|
||||||
button = katze_property_proxy (settings, "toolbar-items", NULL);
|
button = katze_property_proxy (settings, "toolbar-items", NULL);
|
||||||
FILLED_ADD (button, 1, 2, 1, 2);
|
FILLED_ADD (button, 1, 2, 1, 2);
|
||||||
|
button = gtk_label_new (NULL);
|
||||||
|
gtk_label_set_markup (GTK_LABEL (button),
|
||||||
|
"<span size='smaller'>"
|
||||||
|
"TabNew, Open, Print, Find, Location, Preferences, Window, Bookmarks\n"
|
||||||
|
"ReloadStop, ZoomIn, ZoomOut, Back, Forward, Homepage, Search, Trash"
|
||||||
|
"</span>");
|
||||||
|
FILLED_ADD (button, 0, 2, 2, 3);
|
||||||
button = katze_property_proxy (settings, "always-show-tabbar", NULL);
|
button = katze_property_proxy (settings, "always-show-tabbar", NULL);
|
||||||
INDENTED_ADD (button, 0, 1, 2, 3);
|
INDENTED_ADD (button, 0, 1, 3, 4);
|
||||||
FRAME_NEW (_("Browsing"));
|
FRAME_NEW (_("Browsing"));
|
||||||
TABLE_NEW (3, 2);
|
TABLE_NEW (3, 2);
|
||||||
/* label = katze_property_label (settings, "open-new-pages-in");
|
/* label = katze_property_label (settings, "open-new-pages-in");
|
||||||
|
|
Loading…
Reference in a new issue