Added ImGuiWindowFlags_NoSavedSettings flag + Fixed overlay example app.

This commit is contained in:
omar
2014-12-10 17:13:45 +00:00
parent 2a3bff9a82
commit 3399890a84
2 changed files with 33 additions and 10 deletions

11
imgui.h
View File

@ -312,11 +312,12 @@ enum ImGuiWindowFlags_
ImGuiWindowFlags_NoScrollbar = 1 << 4,
ImGuiWindowFlags_NoScrollWithMouse = 1 << 5,
ImGuiWindowFlags_AlwaysAutoResize = 1 << 6,
ImGuiWindowFlags_ChildWindow = 1 << 7, // For internal use by BeginChild()
ImGuiWindowFlags_ChildWindowAutoFitX = 1 << 8, // For internal use by BeginChild()
ImGuiWindowFlags_ChildWindowAutoFitY = 1 << 9, // For internal use by BeginChild()
ImGuiWindowFlags_ComboBox = 1 << 10, // For internal use by ComboBox()
ImGuiWindowFlags_Tooltip = 1 << 11 // For internal use by Render() when using Tooltip
ImGuiWindowFlags_NoSavedSettings = 1 << 7, // Never load/save settings in .ini file
ImGuiWindowFlags_ChildWindow = 1 << 8, // For internal use by BeginChild()
ImGuiWindowFlags_ChildWindowAutoFitX = 1 << 9, // For internal use by BeginChild()
ImGuiWindowFlags_ChildWindowAutoFitY = 1 << 10, // For internal use by BeginChild()
ImGuiWindowFlags_ComboBox = 1 << 11, // For internal use by ComboBox()
ImGuiWindowFlags_Tooltip = 1 << 12 // For internal use by Render() when using Tooltip
};
// Flags for ImGui::InputText()