Replaced obsolete function with new one.

This commit is contained in:
Branimir Karadžić 2017-12-10 17:20:28 -08:00 committed by omar
parent 71296910a0
commit e67f3809ed
1 changed files with 1 additions and 1 deletions

View File

@ -1651,7 +1651,7 @@ void ImGui::ShowTestWindow(bool* p_open)
if (ImGui::TreeNode("Horizontal Scrolling"))
{
ImGui::SetNextWindowContentWidth(1500);
ImGui::SetNextWindowContentSize(ImVec2(1500.0f, 0.0f));
ImGui::BeginChild("##ScrollingRegion", ImVec2(0, ImGui::GetFontSize() * 20), false, ImGuiWindowFlags_HorizontalScrollbar);
ImGui::Columns(10);
int ITEMS_COUNT = 2000;