diff --git a/main.cpp b/main.cpp index 3ab76fb..e77df49 100644 --- a/main.cpp +++ b/main.cpp @@ -388,7 +388,9 @@ int main(int, char**) ImGui::EndListBox(); } ImGui::SetNextItemWidth(ImGui::GetWindowWidth() - (ImGui::GetStyle().FramePadding.x * 4)); - ImGui::SliderFloat("##AccentColor", &accent_color, 0.0, 360.0, "UI hue: %.0f°", ImGuiSliderFlags_NoRoundToFormat); + if (ImGui::SliderFloat("##AccentColor", &accent_color, 0.0, 360.0, "UI hue: %.0f°", ImGuiSliderFlags_NoRoundToFormat)) { + theme->Apply(accent_color); + } } ImGui::End(); }