We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed53c1d commit 4f740d2Copy full SHA for 4f740d2
ui/sura_player_ui/sura_player_ui.py
@@ -264,14 +264,16 @@ def next_reciter(self):
264
current_index = self.reciter_combo.currentIndex()
265
if current_index < self.reciter_combo.count() - 1:
266
self.reciter_combo.setCurrentIndex(current_index + 1)
267
+ self.play_current_surah()
268
UniversalSpeech.say(self.reciter_combo.currentText())
269
270
def previous_reciter(self):
271
272
if current_index > 0:
273
self.reciter_combo.setCurrentIndex(current_index - 1)
274
275
-
276
+
277
def update_volume(self):
278
self.player.set_volume(self.volume_slider.value())
279
0 commit comments