Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
#5364: set a tooltip on the 'Override light colour' checkbox
  • Loading branch information
Matthew Mott committed Dec 22, 2020
1 parent e357a35 commit f7f1720
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions radiant/uimanager/colourscheme/ColourSchemeEditor.cpp
Expand Up @@ -83,6 +83,11 @@ void ColourSchemeEditor::addOptionsPanel(wxBoxSizer& vbox)
wxCheckBox* overrideLightsCB = new wxCheckBox(
this, wxID_ANY, _("Override light volume colour")
);
overrideLightsCB->SetToolTip(
_("Render all light volumes in a single colour set by the colour "
"scheme, rather than a per-entity colour controlled by the _color "
"spawnarg")
);
registry::bindWidget(overrideLightsCB, colours::RKEY_OVERRIDE_LIGHTCOL);

vbox.Add(overrideLightsCB, 0, wxEXPAND | wxTOP, 6);
Expand Down

0 comments on commit f7f1720

Please sign in to comment.