mirror of
https://github.com/ocornut/imgui.git
synced 2026-09-27 00:13:29 +03:00
Style: changed ImGuiCol_DockingEmptyBg value for StyleColorsLight().
Amend bd82539ad5
This commit is contained in:
parent
545d1a884a
commit
9c50bd6da6
2 changed files with 3 additions and 1 deletions
|
|
@ -113,6 +113,8 @@ Other Changes:
|
|||
|
||||
Docking+Viewports Branch:
|
||||
|
||||
- Style:
|
||||
- Changed `ImGuiCol_DockingEmptyBg` value for `StyleColorsLight()`.
|
||||
- Backends:
|
||||
- DX10, DX11, DX12: fixed crash when CreateSwapChain() or CreateRenderTargetView()
|
||||
calls are failing. (#9546)
|
||||
|
|
|
|||
|
|
@ -373,7 +373,7 @@ void ImGui::StyleColorsLight(ImGuiStyle* dst)
|
|||
colors[ImGuiCol_TabDimmedSelected] = ImLerp(colors[ImGuiCol_TabSelected], colors[ImGuiCol_TitleBg], 0.40f);
|
||||
colors[ImGuiCol_TabDimmedSelectedOverline] = ImVec4(0.26f, 0.59f, 1.00f, 0.00f);
|
||||
colors[ImGuiCol_DockingPreview] = colors[ImGuiCol_Header] * ImVec4(1.0f, 1.0f, 1.0f, 0.7f);
|
||||
colors[ImGuiCol_DockingEmptyBg] = ImVec4(0.20f, 0.20f, 0.20f, 1.00f);
|
||||
colors[ImGuiCol_DockingEmptyBg] = ImVec4(0.68f, 0.69f, 0.73f, 1.00f);
|
||||
colors[ImGuiCol_PlotLines] = ImVec4(0.39f, 0.39f, 0.39f, 1.00f);
|
||||
colors[ImGuiCol_PlotLinesHovered] = ImVec4(1.00f, 0.43f, 0.35f, 1.00f);
|
||||
colors[ImGuiCol_PlotHistogram] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue