mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-10-31 05:01:05 +01:00 
			
		
		
		
	Combo: Removed ImGuiWindowFlags_ComboBox flag. Moved internal window flags.
This commit is contained in:
		
							
								
								
									
										11
									
								
								imgui.h
									
									
									
									
									
								
							
							
						
						
									
										11
									
								
								imgui.h
									
									
									
									
									
								
							| @@ -517,12 +517,11 @@ enum ImGuiWindowFlags_ | ||||
|     ImGuiWindowFlags_ResizeFromAnySide      = 1 << 17,  // (WIP) Enable resize from any corners and borders. Your back-end needs to honor the different values of io.MouseCursor set by imgui. | ||||
|  | ||||
|     // [Internal] | ||||
|     ImGuiWindowFlags_ChildWindow            = 1 << 22,  // Don't use! For internal use by BeginChild() | ||||
|     ImGuiWindowFlags_ComboBox               = 1 << 23,  // Don't use! For internal use by ComboBox() | ||||
|     ImGuiWindowFlags_Tooltip                = 1 << 24,  // Don't use! For internal use by BeginTooltip() | ||||
|     ImGuiWindowFlags_Popup                  = 1 << 25,  // Don't use! For internal use by BeginPopup() | ||||
|     ImGuiWindowFlags_Modal                  = 1 << 26,  // Don't use! For internal use by BeginPopupModal() | ||||
|     ImGuiWindowFlags_ChildMenu              = 1 << 27   // Don't use! For internal use by BeginMenu() | ||||
|     ImGuiWindowFlags_ChildWindow            = 1 << 24,  // Don't use! For internal use by BeginChild() | ||||
|     ImGuiWindowFlags_Tooltip                = 1 << 25,  // Don't use! For internal use by BeginTooltip() | ||||
|     ImGuiWindowFlags_Popup                  = 1 << 26,  // Don't use! For internal use by BeginPopup() | ||||
|     ImGuiWindowFlags_Modal                  = 1 << 27,  // Don't use! For internal use by BeginPopupModal() | ||||
|     ImGuiWindowFlags_ChildMenu              = 1 << 28   // Don't use! For internal use by BeginMenu() | ||||
| }; | ||||
|  | ||||
| // Flags for ImGui::InputText() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user