Skip to content

Commit

Permalink
Use the word themes for styles in the user facing UI. It is a more ap…
Browse files Browse the repository at this point in the history
…propriate name than style. In code, style remains to be consistent with Dear ImGui.
  • Loading branch information
joseasoler committed Apr 7, 2024
1 parent 90720b9 commit 8114e84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rimworld/rimworld_ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ void show_setup_interface(execution_state& state, ui_impl& ui_data) {
ImGui::NewLine();
}

ImGui::TextUnformatted("Style");
ImGui::TextUnformatted("Theme");
// Using the generic BeginCombo() API, you have full control over how to display the combo contents.
// (your selection data could be an index, a pointer to the object, an id for the object, a flag intrusively
// stored in the object itself, etc.)
Expand All @@ -172,7 +172,7 @@ void show_setup_interface(execution_state& state, ui_impl& ui_data) {
ImGui::EndCombo();
}
ImGui::SameLine();
help_marker("User interface style used by ToDDS. Has no impact on encoded textures.");
help_marker("User interface theme used by ToDDS. Has no impact on encoded textures.");
}

void show_processing_interface(execution_state& state, ui_impl& ui_data) {
Expand Down

0 comments on commit 8114e84

Please sign in to comment.