summaryrefslogtreecommitdiffstats
path: root/src/files.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/files.py')
-rw-r--r--src/files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/files.py b/src/files.py
index 39eaa97ee..49c1087cb 100644
--- a/src/files.py
+++ b/src/files.py
@@ -123,7 +123,7 @@ class FilesBaseManager(object):
def mouse_clicked(self, widget, event):
if event.button == 3:
- data = self.file_view.get_path_at_pos(event.x, event.y)
+ data = self.file_view.get_path_at_pos(int(event.x), int(event.y))
if data is None:
return True