ImGui Update to v1.76 (#1545)

This commit is contained in:
michelle
2020-06-14 20:17:59 -07:00
committed by GitHub
parent 238d52c90f
commit 762a4ec1f4
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -79,8 +79,8 @@ int main(int argc, char *argv[])
menu.callback_draw_custom_window = [&]()
{
// Define next window position + size
ImGui::SetNextWindowPos(ImVec2(180.f * menu.menu_scaling(), 10), ImGuiSetCond_FirstUseEver);
ImGui::SetNextWindowSize(ImVec2(200, 160), ImGuiSetCond_FirstUseEver);
ImGui::SetNextWindowPos(ImVec2(180.f * menu.menu_scaling(), 10), ImGuiCond_FirstUseEver);
ImGui::SetNextWindowSize(ImVec2(200, 160), ImGuiCond_FirstUseEver);
ImGui::Begin(
"New Window", nullptr,
ImGuiWindowFlags_NoSavedSettings