summaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/commands.c b/commands.c
index 8ab1247..3981f0f 100644
--- a/commands.c
+++ b/commands.c
@@ -233,7 +233,7 @@ bool cg_navigate_marked(arg_t n)
{
int d, i;
int new = fileidx;
-
+
if (prefix > 0)
n *= prefix;
d = n > 0 ? 1 : -1;
@@ -337,14 +337,13 @@ bool ci_drag(arg_t mode)
if ((int)(img.w * img.zoom) <= win.w && (int)(img.h * img.zoom) <= win.h)
return false;
-
- win_set_cursor(&win, CURSOR_DRAG);
+ win_set_cursor(&win, CURSOR_DRAG);
win_cursor_pos(&win, &x, &y);
ox = x;
oy = y;
- for (;;) {
+ while (true) {
if (mode == DRAG_ABSOLUTE) {
px = MIN(MAX(0.0, x - win.w*0.1), win.w*0.8) / (win.w*0.8)
* (win.w - img.w * img.zoom);
@@ -449,4 +448,3 @@ bool ct_reload_all(arg_t _)
const cmd_t cmds[CMD_COUNT] = {
#include "commands.lst"
};
-