mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Add handler for drag_data_received to supress warning
This commit is contained in:
parent
c6ee8cf39d
commit
fc7fa94319
1 changed files with 4 additions and 0 deletions
|
@ -399,6 +399,7 @@ class TorrentView(listview.ListView, component.Component):
|
|||
self.treeview.get_selection().connect("changed", self.on_selection_changed)
|
||||
|
||||
self.treeview.connect("drag-drop", self.on_drag_drop)
|
||||
self.treeview.connect("drag_data_received", self.on_drag_data_received)
|
||||
self.treeview.connect("key-press-event", self.on_key_press_event)
|
||||
self.treeview.connect("columns-changed", self.on_columns_changed_event)
|
||||
|
||||
|
@ -687,6 +688,9 @@ class TorrentView(listview.ListView, component.Component):
|
|||
def on_drag_drop(self, widget, drag_context, x, y, timestamp):
|
||||
widget.stop_emission("drag-drop")
|
||||
|
||||
def on_drag_data_received(self, widget, drag_context, x, y, selection_data, info, timestamp):
|
||||
widget.stop_emission("drag_data_received")
|
||||
|
||||
def on_columns_changed_event(self, treeview):
|
||||
log.debug("Treeview Columns Changed")
|
||||
self.save_state()
|
||||
|
|
Loading…
Add table
Reference in a new issue