Whitespace

This commit is contained in:
Scott Kostyshak 2022-10-28 18:28:31 -04:00
parent af1030e01a
commit 172e544e2c
2 changed files with 4 additions and 4 deletions

View File

@ -512,8 +512,8 @@ public:
bool full_screen_statusbar = true; bool full_screen_statusbar = true;
/// Limit the text width? /// Limit the text width?
bool screen_limit = false; bool screen_limit = false;
/// Width of limited screen width /// Width of limited screen width
Length screen_width = Length(7, Length::IN); Length screen_width = Length(7, Length::IN);
/// ///
bool completion_cursor_text = true; bool completion_cursor_text = true;
/// ///

View File

@ -2868,8 +2868,8 @@ void PrefEdit::applyRC(LyXRC & rc) const
rc.full_screen_statusbar = toggleStatusbarCB->isChecked(); rc.full_screen_statusbar = toggleStatusbarCB->isChecked();
rc.full_screen_tabbar = toggleTabbarCB->isChecked(); rc.full_screen_tabbar = toggleTabbarCB->isChecked();
rc.full_screen_menubar = toggleMenubarCB->isChecked(); rc.full_screen_menubar = toggleMenubarCB->isChecked();
rc.screen_width = Length(widgetsToLength(screenWidthLE, screenWidthUnitCO)); rc.screen_width = Length(widgetsToLength(screenWidthLE, screenWidthUnitCO));
rc.screen_limit = screenLimitCB->isChecked(); rc.screen_limit = screenLimitCB->isChecked();
} }