Fixed flag ImGuiWindowFlags_AlwaysAutoResize been passed as alpha argument (#1251)

This commit is contained in:
Stanislav 2017-10-05 23:05:52 -04:00 committed by Branimir Karadžić
parent 2ef1d526c6
commit f9b5c86d10

View File

@ -19,9 +19,9 @@ void showExampleDialog(entry::AppI* _app, const char* _errorText)
ImVec2(10.0f, 50.0f)
, ImGuiSetCond_FirstUseEver
);
ImGui::SetNextWindowSize(ImVec2(256.0f, 200.0f));
ImGui::Begin(temp
, NULL
, ImVec2(256.0f, 200.0f)
, ImGuiWindowFlags_AlwaysAutoResize
);