mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 12:04:51 +00:00
fix deprecation warning with float
This commit is contained in:
parent
f4a5b750d8
commit
cb493591f1
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue