Mercurial > geeqie
changeset 1268:8c39e0bd7e08
Invert Horizontally vs vertically zoom fit, it was a TRUE/FALSE mismatch, reported by Christopher Beland.
author | zas_ |
---|---|
date | Thu, 29 Jan 2009 19:00:24 +0000 |
parents | dfa378900ec9 |
children | 08b4598c7cba |
files | src/layout_util.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/layout_util.c Thu Jan 29 18:52:52 2009 +0000 +++ b/src/layout_util.c Thu Jan 29 19:00:24 2009 +0000 @@ -420,14 +420,14 @@ { LayoutWindow *lw = data; - layout_image_zoom_set_fill_geometry(lw, TRUE, FALSE); + layout_image_zoom_set_fill_geometry(lw, FALSE, FALSE); } static void layout_menu_zoom_fit_vert_cb(GtkAction *action, gpointer data) { LayoutWindow *lw = data; - layout_image_zoom_set_fill_geometry(lw, FALSE, FALSE); + layout_image_zoom_set_fill_geometry(lw, TRUE, FALSE); } static void layout_menu_zoom_2_1_cb(GtkAction *action, gpointer data) @@ -504,14 +504,14 @@ { LayoutWindow *lw = data; - layout_image_zoom_set_fill_geometry(lw, TRUE, TRUE); + layout_image_zoom_set_fill_geometry(lw, FALSE, TRUE); } static void layout_menu_connect_zoom_fit_vert_cb(GtkAction *action, gpointer data) { LayoutWindow *lw = data; - layout_image_zoom_set_fill_geometry(lw, FALSE, TRUE); + layout_image_zoom_set_fill_geometry(lw, TRUE, TRUE); } static void layout_menu_connect_zoom_2_1_cb(GtkAction *action, gpointer data)