Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cut-n-paste
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@yandex.ru>2007-05-09 23:05:25 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2007-05-09 23:05:25 (GMT)
commit1a95c954e41b134c69fd85e5128ec7a197f58a89 (patch)
treef1b47563247fe40190f6f9c12e68f71e3b036f48 /cut-n-paste
parentbfcdcc910f8e5e8e073db56ea8c1c3832925ce5f (diff)
Fixes zoom level factors. See bug #408119 for details.
2007-05-10 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * cut-n-paste/zoom-control/ephy-zoom.h: Fixes zoom level factors. See bug #408119 for details. svn path=/trunk/; revision=2447
Diffstat (limited to 'cut-n-paste')
-rw-r--r--cut-n-paste/zoom-control/ephy-zoom.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/cut-n-paste/zoom-control/ephy-zoom.h b/cut-n-paste/zoom-control/ephy-zoom.h
index e8fb52a..992bca5 100644
--- a/cut-n-paste/zoom-control/ephy-zoom.h
+++ b/cut-n-paste/zoom-control/ephy-zoom.h
@@ -48,8 +48,9 @@ zoom_levels[] =
{ N_("Best Fit"), EPHY_ZOOM_BEST_FIT },
{ N_("Fit Page Width"), EPHY_ZOOM_FIT_WIDTH },
{ NULL, EPHY_ZOOM_SEPARATOR },
- { N_("50%"), 0.7071067811 },
- { N_("75%"), 0.8408964152 },
+ { N_("50%"), 0.5 },
+ { N_("70%"), 0.7071067811 },
+ { N_("85%"), 0.8408964152 },
{ N_("100%"), 1.0 },
{ N_("125%"), 1.1892071149 },
{ N_("150%"), 1.4142135623 },