Skip to content

Commit

Permalink
bugfix: fixed background color for SaveStates panel checkboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed May 9, 2024
1 parent 4f1c48f commit cda18ef
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/osdep/gui/PanelSavestate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ void InitPanelSavestate(const config_category& category)
for (int i = 0; i < 15; ++i) {
radioButtons[i] = new gcn::RadioButton(std::to_string(i), "radiostategroup");
radioButtons[i]->setId("State" + std::to_string(i));
radioButtons[i]->setBackgroundColor(colTextboxBackground);
radioButtons[i]->addActionListener(savestateActionListener);
}

Expand Down

0 comments on commit cda18ef

Please sign in to comment.