summary refs log tree commit diff stats
diff options
context:
space:
mode:
author0xjmz <0xjmz@users.noreply.github.com>2017-08-01 11:04:30 +0200
committerGitHub <noreply@github.com>2017-08-01 11:04:30 +0200
commit1c8bac07910208d10a702f9a8694f642355fc2bd (patch)
treec2869209055647a91ca65bfb204ad9550e09fea2
parentfdfefa521c85cb0d18cadd652234b1e164df4704 (diff)
parent35f47f53a32b29f746c5ddcd4fb367bf2ad7e640 (diff)
downloadranger-1c8bac07910208d10a702f9a8694f642355fc2bd.tar.gz
Merge branch 'master' into fix-question-movement
-rwxr-xr-xdoc/tools/convert_papermode_to_metadata.py2
-rwxr-xr-xdoc/tools/performance_test.py5
-rw-r--r--ranger/ext/direction.py14
3 files changed, 16 insertions, 5 deletions
diff --git a/doc/tools/convert_papermode_to_metadata.py b/doc/tools/convert_papermode_to_metadata.py
index e4010a73..57459097 100755
--- a/doc/tools/convert_papermode_to_metadata.py
+++ b/doc/tools/convert_papermode_to_metadata.py
@@ -1,4 +1,4 @@
-#!/bin/python
+#!/usr/bin/env python
 """
 usage: ./convert_papermode_to_metadata.py
 
diff --git a/doc/tools/performance_test.py b/doc/tools/performance_test.py
index f9562f0c..3b9099d5 100755
--- a/doc/tools/performance_test.py
+++ b/doc/tools/performance_test.py
@@ -1,6 +1,7 @@
-#!/usr/bin/python
-# pylint: disable=wrong-import-position
+#!/usr/bin/env python
+
 from __future__ import (absolute_import, division, print_function)
+
 import sys
 import time
 
diff --git a/ranger/ext/direction.py b/ranger/ext/direction.py
index bbb69c9b..e337c26e 100644
--- a/ranger/ext/direction.py
+++ b/ranger/ext/direction.py
@@ -20,6 +20,8 @@ False
 
 from __future__ import (absolute_import, division, print_function)
 
+import math
+
 
 class Direction(dict):
 
@@ -142,8 +144,16 @@ class Direction(dict):
         if self.cycle():
             cycles, pos = divmod(pos, (maximum + offset - minimum))
             self['_move_cycles'] = int(cycles)
-            return int(minimum + pos)
-        return int(max(min(pos, maximum + offset - 1), minimum))
+            ret = minimum + pos
+        else:
+            ret = max(min(pos, maximum + offset - 1), minimum)
+        # Round towards the direction we're moving from.
+        # From the UI point of view, round down. See: #912.
+        if direction < 0:
+            ret = int(math.ceil(ret))
+        else:
+            ret = int(ret)
+        return ret
 
     def move_cycles(self):
         return self.get('_move_cycles', 0)