fix deprecation warning with float

This commit is contained in:
Marcos Pinto 2008-02-12 20:27:58 +00:00
parent f4a5b750d8
commit cb493591f1
1 changed files with 1 additions and 1 deletions

View File

@ -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