From 2cf5caa90d1fa04a807a72641cff09506339f33b Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Fri, 8 Sep 2017 13:39:13 -0500 Subject: [PATCH] Fixed #157 --- doc/changelog.md | 1 + src/controller/buffersController.py | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/changelog.md b/doc/changelog.md index ddbcb917..5d677de5 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -4,6 +4,7 @@ * When authorising an account, you will see a dialogue with a cancel button, in case you want to abort the process. Also, NVDA will not be blocked when the process starts. ([#101](https://github.com/manuelcortez/TWBlue/issues/101)) * In the translator module, the list of available languages is fetched automatically from the provider. That means all of these languages will work and there will not be inconsistencies. Also we've removed the first combo box, because the language is detected automatically by Yandex'S API. ([#153](https://github.com/manuelcortez/TWBlue/issues/153)) +* Trending topics, searches and conversation buffers will use mute settings set for the session in wich they were opened. ([#157](https://github.com/manuelcortez/TWBlue/issues/157)) * And more. ([#156](https://github.com/manuelcortez/TWBlue/issues/156)) ## changes in version 0.91 and 0.92 diff --git a/src/controller/buffersController.py b/src/controller/buffersController.py index efce4ee7..112fb8b2 100644 --- a/src/controller/buffersController.py +++ b/src/controller/buffersController.py @@ -988,7 +988,7 @@ class searchBufferController(baseBufferController): # return None num = self.session.order_buffer(self.name, val) self.put_items_on_list(num) - if num > 0: + if num > 0 and self.session.settings["sound"]["session_mute"] == False and self.name not in self.session.settings["other_buffers"]["muted_buffers"]: self.session.sound.play("search_updated.ogg") return num @@ -1068,7 +1068,7 @@ class searchPeopleBufferController(peopleBufferController): number_of_items = self.session.order_cursored_buffer(self.name, val) log.debug("Number of items retrieved: %d" % (number_of_items,)) self.put_items_on_list(number_of_items) - if number_of_items > 0: + if number_of_items > 0 and self.session.settings["sound"]["session_mute"] == False and self.name not in self.session.settings["other_buffers"]["muted_buffers"]: self.session.sound.play("search_updated.ogg") return number_of_items @@ -1148,7 +1148,8 @@ class trendsBufferController(bufferController): self.name_ = data[0]["locations"][0]["name"] self.trends = data[0]["trends"] self.put_items_on_the_list() - self.session.sound.play(self.sound) + if self.session.settings["sound"]["session_mute"] == False and self.name not in self.session.settings["other_buffers"]["muted_buffers"]: + self.session.sound.play(self.sound) def put_items_on_the_list(self): selected_item = self.buffer.list.get_selected() @@ -1270,7 +1271,7 @@ class conversationBufferController(searchBufferController): number_of_items = self.session.order_buffer(self.name, self.statuses) log.debug("Number of items retrieved: %d" % (number_of_items,)) self.put_items_on_list(number_of_items) - if number_of_items > 0: + if number_of_items > 0 and self.session.settings["sound"]["session_mute"] == False and self.name not in self.session.settings["other_buffers"]["muted_buffers"]: self.session.sound.play("search_updated.ogg") return number_of_items