| 1809 | void Viewer::OnProfileKiosk() { if (!CropMode && (Config::GetProfile() != Profile::Kiosk)) ChangProfile(Profile::Kiosk); } |
| 1810 | void Viewer::OnProfileAlt() { if (!CropMode && (Config::GetProfile() != Profile::Alt)) ChangProfile(Profile::Alt); } |
| 1811 | void Viewer::OnPreferences() { Config::ProfileData& profile = Config::GetProfileData(); profile.ShowPreferences = !profile.ShowPreferences; } |
| 1812 | void Viewer::OnKeyBindings() { Config::ProfileData& profile = Config::GetProfileData(); profile.ShowBindingsWindow = !profile.ShowBindingsWindow; if (profile.ShowBindingsWindow) BindingsWindowJustOpened = true; } |
| 1813 | void Viewer::OnChangeScreenMode() { Config::ProfileData& profile = Config::GetProfileData(); ChangeScreenMode(!profile.FullscreenMode); } |
| 1814 |
nothing calls this directly
no outgoing calls
no test coverage detected