adjust tooltip

This commit is contained in:
goeiecool9999 2025-11-13 23:29:09 +01:00
parent 3c6095f5ca
commit 7f9281c1bb

View file

@ -405,11 +405,11 @@ wxPanel* GeneralSettings2::AddGraphicsPage(wxNotebook* notebook)
displayGammaLabel->SetToolTip(displayGammaTooltip); displayGammaLabel->SetToolTip(displayGammaTooltip);
m_userDisplayisSRGB = new wxCheckBox(box, wxID_ANY, "sRGB", wxDefaultPosition, wxDefaultSize); m_userDisplayisSRGB = new wxCheckBox(box, wxID_ANY, "sRGB", wxDefaultPosition, wxDefaultSize);
m_userDisplayisSRGB->SetToolTip(_("Select this if cemu is being displayed using a piecewise sRGB gamma curve\n" m_userDisplayisSRGB->SetToolTip(_("Select this if Cemu is being displayed using a piecewise sRGB gamma curve\n"
"This is usually only the case if you use an HDR screen (with HDR enabled), if you calibrated your SDR display and use windows 11's Auto Color Management, " "This is usually only the case if you use an HDR display (with HDR enabled), if you calibrated your SDR display and use windows 11's Auto Color Management, "
"or use a display profile with a VCGT tag that targets piecewise sRGB\n" "or if you use a display profile with a VCGT tag that targets piecewise sRGB\n"
"Colors will be more accurate especially in dark scenes but this may result in banding and/or crushed shadows\n" "Colors will be more accurate, especially in dark scenes, but this may result in banding and/or crushed shadows\n"
"To avoid this you should display cemu with a pure gamma curve if possible")); "To avoid this, display Cemu with a pure gamma curve if possible and leave this box unchecked."));
m_userDisplayisSRGB->Bind(wxEVT_CHECKBOX, &GeneralSettings2::OnUserDisplaySRGBSelected, this); m_userDisplayisSRGB->Bind(wxEVT_CHECKBOX, &GeneralSettings2::OnUserDisplaySRGBSelected, this);
srgbCheckBoxSizer->Add(m_userDisplayGamma, 0, wxALL, 5); srgbCheckBoxSizer->Add(m_userDisplayGamma, 0, wxALL, 5);