| 1118 | void Viewer::OnPixelEdit() { Config::ProfileData& profile = Config::GetProfileData(); profile.ShowPixelEditor = !profile.ShowPixelEditor; } |
| 1119 | void Viewer::OnPropertyEdit() { Config::ProfileData& profile = Config::GetProfileData(); profile.ShowPropsWindow = !profile.ShowPropsWindow; } |
| 1120 | void Viewer::OnChannelFilter() { Config::ProfileData& profile = Config::GetProfileData(); profile.ShowChannelFilter = !profile.ShowChannelFilter; } |
| 1121 | void Viewer::OnLevels() { if (CurrImage && CurrImage->IsLoaded() && !CurrImage->IsAltPictureEnabled()) Request_LevelsModal = true; } |
| 1122 | void Viewer::OnQuantize() { if (CurrImage && CurrImage->IsLoaded() && !CurrImage->IsAltPictureEnabled()) Request_QuantizeModal = true; } |
| 1123 | void Viewer::OnRedChannel() { Config::ProfileData& profile = Config::GetProfileData(); if (DrawChannel_AsIntensity) { DrawChannel_R = true; DrawChannel_G = false; DrawChannel_B = false; DrawChannel_A = false; } else DrawChannel_R = !DrawChannel_R; profile.ShowChannelFilter = true; } |
nothing calls this directly
no outgoing calls
no test coverage detected