mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-07-18 22:16:08 -04:00
Open a search from the trending topics buffer is now possible
This commit is contained in:
@@ -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())
|
Reference in New Issue
Block a user