mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-11-04 07:01:04 +01:00 
			
		
		
		
	IsItemHovered(): Added ImGuiHoveredFlags_AllowWhenDisabled flag to query hovered status on disabled items. (#1940, #211)
+ shallow changelog tweaks
This commit is contained in:
		@@ -865,7 +865,7 @@ enum ImGuiItemFlags_
 | 
			
		||||
{
 | 
			
		||||
    ImGuiItemFlags_AllowKeyboardFocus           = 1 << 0,  // true
 | 
			
		||||
    ImGuiItemFlags_ButtonRepeat                 = 1 << 1,  // false    // Button() will return true multiple times based on io.KeyRepeatDelay and io.KeyRepeatRate settings.
 | 
			
		||||
    ImGuiItemFlags_Disabled                     = 1 << 2,  // false    // FIXME-WIP: Disable interactions but doesn't affect visuals. Should be: grey out and disable interactions with widgets that affect data + view widgets (WIP)
 | 
			
		||||
    ImGuiItemFlags_Disabled                     = 1 << 2,  // false    // [BETA] Disable interactions but doesn't affect visuals yet. See github.com/ocornut/imgui/issues/211
 | 
			
		||||
    ImGuiItemFlags_NoNav                        = 1 << 3,  // false
 | 
			
		||||
    ImGuiItemFlags_NoNavDefaultFocus            = 1 << 4,  // false
 | 
			
		||||
    ImGuiItemFlags_SelectableDontClosePopup     = 1 << 5,  // false    // MenuItem/Selectable() automatically closes current Popup window
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user