diff options
author | Stefano Karapetsas <[email protected]> | 2014-02-09 12:06:43 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-02-09 12:06:43 +0100 |
commit | 142ebf79903cd71789c31ddc0c56b398c8e50e4e (patch) | |
tree | 5361ae85388269673e82e0b729ec8f40d2f00908 /cut-n-paste/zoom-control/ephy-zoom.h | |
parent | d282ff3e6a5d6fb3d3e73a7ccf8c2dfc600720ad (diff) | |
parent | 7f21f2854ad69786568558db9c5d87ba17aa921c (diff) | |
download | atril-142ebf79903cd71789c31ddc0c56b398c8e50e4e.tar.bz2 atril-142ebf79903cd71789c31ddc0c56b398c8e50e4e.tar.xz |
Merge pull request #64 from bl0ckeduser/expandwin
Implement window expand functionality (#53)
Diffstat (limited to 'cut-n-paste/zoom-control/ephy-zoom.h')
-rw-r--r-- | cut-n-paste/zoom-control/ephy-zoom.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cut-n-paste/zoom-control/ephy-zoom.h b/cut-n-paste/zoom-control/ephy-zoom.h index 642e5ba9..1dcb4598 100644 --- a/cut-n-paste/zoom-control/ephy-zoom.h +++ b/cut-n-paste/zoom-control/ephy-zoom.h @@ -34,7 +34,8 @@ G_BEGIN_DECLS #define EPHY_ZOOM_BEST_FIT (-3.0) #define EPHY_ZOOM_FIT_WIDTH (-4.0) -#define EPHY_ZOOM_SEPARATOR (-5.0) +#define EPHY_ZOOM_EXPAND_WINDOW_TO_FIT (-5.0) +#define EPHY_ZOOM_SEPARATOR (-6.0) static const struct @@ -47,6 +48,7 @@ zoom_levels[] = { { N_("Best Fit"), EPHY_ZOOM_BEST_FIT }, { N_("Fit Page Width"), EPHY_ZOOM_FIT_WIDTH }, + { N_("Expand Window To Fit"), EPHY_ZOOM_EXPAND_WINDOW_TO_FIT }, { NULL, EPHY_ZOOM_SEPARATOR }, { N_("50%"), 0.5 }, { N_("70%"), 0.7071067811 }, |