Skip to content

Commit

Permalink
InputText() fixing cancel (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocornut committed Jun 17, 2015
1 parent 73491e5 commit 917a1fd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions imgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7038,7 +7038,7 @@ static bool InputTextEx(const char* label, char* buf, size_t buf_size, const ImV
if (cancel_edit)
{
// Restore initial value
ImFormatString(buf, buf_size, "%s", edit_state.InitialText);
ImFormatString(buf, buf_size, "%s", edit_state.InitialText.begin());
value_changed = true;
}
else
Expand Down Expand Up @@ -7465,7 +7465,6 @@ bool ImGui::Combo(const char* label, int* current_item, bool (*items_getter)(voi
if (height_in_items < 0)
height_in_items = 7;

const ImVec2 backup_pos = ImGui::GetCursorPos();
const float popup_height = (label_size.y + style.ItemSpacing.y) * ImMin(items_count, height_in_items) + (style.FramePadding.y * 3);
const ImRect popup_rect(ImVec2(frame_bb.Min.x, frame_bb.Max.y), ImVec2(frame_bb.Max.x, frame_bb.Max.y + popup_height));
ImGui::SetNextWindowPos(popup_rect.Min);
Expand Down

0 comments on commit 917a1fd

Please sign in to comment.