mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-22 19:28:09 -06:00
Delete search buffers
This commit is contained in:
parent
f13d9113a4
commit
10d0b8ba6b
@ -526,6 +526,15 @@ class searchBufferController(baseBufferController):
|
|||||||
if number_of_items > 0:
|
if number_of_items > 0:
|
||||||
self.session.sound.play("search_updated.ogg")
|
self.session.sound.play("search_updated.ogg")
|
||||||
|
|
||||||
|
def remove_buffer(self):
|
||||||
|
dlg = commonMessageDialogs.remove_buffer()
|
||||||
|
if dlg == widgetUtils.YES:
|
||||||
|
if self.name[:-11] in self.session.settings["other_buffers"]["tweet_searches"]:
|
||||||
|
self.session.settings["other_buffers"]["tweet_searches"].remove(self.name[:-11])
|
||||||
|
return True
|
||||||
|
elif dlg == widgetUtils.NO:
|
||||||
|
return False
|
||||||
|
|
||||||
class searchPeopleBufferController(searchBufferController):
|
class searchPeopleBufferController(searchBufferController):
|
||||||
|
|
||||||
def __init__(self, parent, function, name, sessionObject, account, bufferType="peoplePanel", *args, **kwargs):
|
def __init__(self, parent, function, name, sessionObject, account, bufferType="peoplePanel", *args, **kwargs):
|
||||||
|
Loading…
Reference in New Issue
Block a user