aboutsummaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/commands.c b/commands.c
index 2e877e3..8868091 100644
--- a/commands.c
+++ b/commands.c
@@ -310,9 +310,10 @@ bool i_set_zoom(arg_t a) {
bool i_fit_to_win(arg_t a) {
bool ret = false;
+ scalemode_t sm = (scalemode_t) a;
if (mode == MODE_IMAGE) {
- if ((ret = img_fit_win(&img)))
+ if ((ret = img_fit_win(&img, sm)))
img_center(&img);
}
return ret;