summaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/commands.c b/commands.c
index db0a808..ea0a425 100644
--- a/commands.c
+++ b/commands.c
@@ -273,7 +273,14 @@ bool i_zoom(arg_t a) {
else if (scale < 0)
return img_zoom_out(&img);
else
- return img_zoom(&img, 1.0);
+ return false;
+}
+
+bool i_set_zoom(arg_t a) {
+ if (mode == MODE_IMAGE)
+ return img_zoom(&img, (prefix ? prefix : (long) a) / 100.0);
+ else
+ return false;
}
bool i_fit_to_win(arg_t a) {