aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--data/ui/epiphany-toolbar.xml3
-rwxr-xr-xsrc/ephy-toolbars-model.c2
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dbb83e49f..c48af3646 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2006-01-12 Christian Persch <chpe@cvs.gnome.org>
+ * data/ui/epiphany-toolbar.xml:
+ * src/ephy-toolbars-model.c: (ephy_toolbars_model_load):
+
+ Add Zoom In/Out buttons to default toolbar layout and toolbars
+ editor repertoire. Bug #117923.
+
+2006-01-12 Christian Persch <chpe@cvs.gnome.org>
+
* configure.ac:
* Makefile.am:
diff --git a/data/ui/epiphany-toolbar.xml b/data/ui/epiphany-toolbar.xml
index e6f1e4278..ccc7ff532 100644
--- a/data/ui/epiphany-toolbar.xml
+++ b/data/ui/epiphany-toolbar.xml
@@ -31,7 +31,8 @@
<toolitem name="GoHistory"/>
<toolitem name="GoBookmarks"/>
<separator/>
- <toolitem name="EditFind"/>
+ <toolitem name="ViewZoomIn"/>
+ <toolitem name="ViewZoomOut"/>
</toolbar>
<toolbar name="EntryToolbar">
<toolitem name="Location"/>
diff --git a/src/ephy-toolbars-model.c b/src/ephy-toolbars-model.c
index a575b53f4..dec18628e 100755
--- a/src/ephy-toolbars-model.c
+++ b/src/ephy-toolbars-model.c
@@ -201,6 +201,8 @@ ephy_toolbars_model_load (EphyToolbarsModel *model)
egg_toolbars_model_set_n_avail (eggmodel, "Location", 1);
egg_toolbars_model_set_n_avail (eggmodel, "ToolbarGo", 1);
egg_toolbars_model_set_n_avail (eggmodel, "Zoom", 1);
+ egg_toolbars_model_set_n_avail (eggmodel, "ViewZoomOut", 1);
+ egg_toolbars_model_set_n_avail (eggmodel, "ViewZoomIn", 1);
success = egg_toolbars_model_load (eggmodel, model->priv->xml_file);
LOG ("Loading the toolbars was %ssuccessful", success ? "" : "un");