| 1804 | void Viewer::OnSlideshowReshuffle() { Config::ProfileData& profile = Config::GetProfileData(); profile.SlideshowAutoReshuffle = !profile.SlideshowAutoReshuffle; } |
| 1805 | void Viewer::OnCheatSheet() { Config::ProfileData& profile = Config::GetProfileData(); profile.ShowCheatSheet = !profile.ShowCheatSheet; } |
| 1806 | void Viewer::OnDebugLog() { Config::ProfileData& profile = Config::GetProfileData(); profile.ShowOutputLog = !profile.ShowOutputLog; } |
| 1807 | void Viewer::OnProfileMain() { if (!CropMode && (Config::GetProfile() != Profile::Main)) ChangProfile(Profile::Main); } |
| 1808 | void Viewer::OnProfileBasic() { if (!CropMode && (Config::GetProfile() != Profile::Basic)) ChangProfile(Profile::Basic); } |
| 1809 | void Viewer::OnProfileKiosk() { if (!CropMode && (Config::GetProfile() != Profile::Kiosk)) ChangProfile(Profile::Kiosk); } |
nothing calls this directly
no outgoing calls
no test coverage detected