Fixed clicking on Combo box label.

This commit is contained in:
ocornut 2015-01-04 18:32:15 +00:00
parent 2268b098e0
commit 3674d30e90

View file

@ -5150,7 +5150,7 @@ bool ImGui::Combo(const char* label, int* current_item, bool (*items_getter)(voi
const ImGuiAabb bb(frame_bb.Min, frame_bb.Max + ImVec2(style.ItemInnerSpacing.x + text_size.x,0));
const float arrow_size = (window->FontSize() + style.FramePadding.x * 2.0f);
const bool hovered = IsHovered(bb, id);
const bool hovered = IsHovered(frame_bb, id);
bool value_changed = false;
RenderFrame(frame_bb.Min, frame_bb.Max, window->Color(ImGuiCol_FrameBg));