mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-10-31 05:01:05 +01:00 
			
		
		
		
	Nav: Internals: Renamed ImGuiButtonFlags_NoNavOverride to ImGuiButtonFlags_NoNavFocus + fixed a theorically missing test in ButtonBehavior() (#787)
This commit is contained in:
		| @@ -182,7 +182,7 @@ enum ImGuiButtonFlags_ | ||||
|     ImGuiButtonFlags_AlignTextBaseLine      = 1 << 8,   // vertically align button to match text baseline - ButtonEx() only // FIXME: Should be removed and handled by SmallButton(), not possible currently because of DC.CursorPosPrevLine | ||||
|     ImGuiButtonFlags_NoKeyModifiers         = 1 << 9,   // disable interaction if a key modifier is held | ||||
|     ImGuiButtonFlags_AllowOverlapMode       = 1 << 10,  // require previous frame HoveredId to either match id or be null before being usable | ||||
|     ImGuiButtonFlags_NoNavOverride          = 1 << 11   // don't override navigation id when activated | ||||
|     ImGuiButtonFlags_NoNavFocus             = 1 << 11   // don't override navigation focus when activated | ||||
| }; | ||||
|  | ||||
| enum ImGuiSliderFlags_ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user