Open a search from the trending topics buffer is now possible

This commit is contained in:
2015-03-17 12:24:29 -06:00
parent c7d007636e
commit 89e541be95
4 changed files with 18 additions and 20 deletions

View File

@@ -50,10 +50,10 @@ class bufferController(object):
event = None
ev.Skip()
if event != None:
# try:
getattr(self, event)()
# except AttributeError:
#pass
try:
getattr(self, event)()
except AttributeError:
pass
def volume_down(self):
if self.session.settings["sound"]["volume"] > 0.0:
@@ -688,4 +688,7 @@ class trendsBufferController(bufferController):
self.timer.cancel()
return True
elif dlg == widgetUtils.NO:
return False
return False
def url(self, *args, **kwargs):
self.searchfunction(value=self.get_message())