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…
Reference in New Issue