mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-23 03:38:08 -06:00
Prevent filtering in some buffers #102
This commit is contained in:
parent
98cf02ee98
commit
b832e36c7d
@ -490,6 +490,10 @@ class Controller(object):
|
|||||||
if not hasattr(page.buffer, "list"):
|
if not hasattr(page.buffer, "list"):
|
||||||
output.speak(_(u"No session is currently in focus. Focus a session with the next or previous session shortcut."), True)
|
output.speak(_(u"No session is currently in focus. Focus a session with the next or previous session shortcut."), True)
|
||||||
return
|
return
|
||||||
|
# Let's prevent filtering of some buffers (people buffers, direct messages, events and sent items).
|
||||||
|
if (page.name == "direct_messages" or page.name =="sent_direct_messages" or page.name == "sent_tweets" or page.name == "events") or page.type == "people":
|
||||||
|
output.speak(_(u"Filters cannot be applied on this buffer"))
|
||||||
|
return
|
||||||
new_filter = filterController.filter(page)
|
new_filter = filterController.filter(page)
|
||||||
|
|
||||||
def seekLeft(self, *args, **kwargs):
|
def seekLeft(self, *args, **kwargs):
|
||||||
|
Loading…
Reference in New Issue
Block a user