From 4f5ce2e8282d3f317449dc8854397c042644e134 Mon Sep 17 00:00:00 2001 From: Bert Münnich Date: Sun, 16 Oct 2011 17:58:53 +0200 Subject: Added i_set_zoom command: set zoom to number prefix --- commands.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'commands.c') 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) { -- cgit v1.2.3