We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a452d6 commit a565623Copy full SHA for a565623
ui/widgets/toolbar.py
@@ -223,10 +223,9 @@ def OnPlayPrevious(self) -> None:
223
224
def change_ayah_focus(self, manual: bool = False) -> None:
225
aya_number = self.parent.quran.ayah_data.get_ayah_number(self.navigation.current_ayah, self.navigation.current_surah)
226
- auto_move_focus = SettingsManager.current_settings["listening"]["auto_move_focus"]
227
- if auto_move_focus:
+ if SettingsManager.current_settings["listening"]["auto_move_focus"]:
228
self.parent.set_focus_to_ayah(aya_number)
229
- elif manual:
+ if manual:
230
231
self.parent.quran_view.setFocus()
232
0 commit comments