Rename full screen option

This commit is contained in:
Matthias Metelka 2023-01-14 11:14:59 +01:00
parent fa057df818
commit 3d02c7858d
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ preferences-reduce-motion-tooltip = Disable various animations and transitions o
preferences-hide-top-bar-during-review = Hide top bar during review preferences-hide-top-bar-during-review = Hide top bar during review
preferences-hide-bottom-bar-during-review = Hide bottom bar during review preferences-hide-bottom-bar-during-review = Hide bottom bar during review
preferences-always = Always preferences-always = Always
preferences-in-full-screen = In full screen preferences-full-screen-only = Full screen only
preferences-appearance = Appearance preferences-appearance = Appearance
preferences-general = General preferences-general = General
preferences-style = Style preferences-style = Style

View file

@ -213,7 +213,7 @@ class Preferences(QDialog):
self.form.minimalist_mode.setChecked(self.mw.pm.minimalist_mode()) self.form.minimalist_mode.setChecked(self.mw.pm.minimalist_mode())
qconnect(self.form.minimalist_mode.stateChanged, self.mw.pm.set_minimalist_mode) qconnect(self.form.minimalist_mode.stateChanged, self.mw.pm.set_minimalist_mode)
hide_choices = [tr.preferences_in_full_screen(), tr.preferences_always()] hide_choices = [tr.preferences_full_screen_only(), tr.preferences_always()]
self.form.hide_top_bar.setChecked(self.mw.pm.hide_top_bar()) self.form.hide_top_bar.setChecked(self.mw.pm.hide_top_bar())
qconnect(self.form.hide_top_bar.stateChanged, self.mw.pm.set_hide_top_bar) qconnect(self.form.hide_top_bar.stateChanged, self.mw.pm.set_hide_top_bar)