소스 검색

Style editor: colors list inside a scrolling region

ocornut 10 년 전
부모
커밋
fd8752df8d
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      imgui.cpp

+ 4 - 0
imgui.cpp

@@ -6353,6 +6353,8 @@ void ImGui::ShowStyleEditor(ImGuiStyle* ref)
         static ImGuiTextFilter filter;
         filter.Draw("Filter colors", 200);
 
+		ImGui::BeginChild("#colors", ImVec2(0, 300), true);
+
         ImGui::ColorEditMode(edit_mode);
         for (int i = 0; i < ImGuiCol_COUNT; i++)
         {
@@ -6368,6 +6370,8 @@ void ImGui::ShowStyleEditor(ImGuiStyle* ref)
             }
             ImGui::PopID();
         }
+		ImGui::EndChild();
+
         ImGui::TreePop();
     }