[qcineoob] factorisation of events in search results

This commit is contained in:
Julien Veyssier 2014-11-23 19:30:10 +01:00 committed by Romain Bignon
commit a47ec4b5cd
4 changed files with 9 additions and 29 deletions

View file

@ -67,11 +67,7 @@ class MiniTorrent(QFrame):
def mousePressEvent(self, event):
QFrame.mousePressEvent(self, event)
torrent = self.backend.get_torrent(self.torrent.id)
if event.button() == 4:
self.parent.parent.newTab(u'Details of torrent "%s"' %
torrent.name, self.backend, torrent=torrent)
self.newTabPressed()
else:
if torrent:
self.parent.doAction('Details of torrent "%s"' %
torrent.name, self.parent.displayTorrent, [torrent, self.backend])
self.viewPressed()