mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-14 05:26:28 +00:00
fix deprecation warning with float
This commit is contained in:
parent
f4a5b750d8
commit
cb493591f1
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user