mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-10-31 13:11:05 +01:00 
			
		
		
		
	Drags, Sliders: Logarithmic: Moved flags to internals, allowing 1.0f to pass by. (#3361, #1823, #1316, #642)
This commit is contained in:
		| @@ -631,6 +631,18 @@ enum ImGuiButtonFlagsPrivate_ | ||||
|     ImGuiButtonFlags_PressedOnDefault_      = ImGuiButtonFlags_PressedOnClickRelease | ||||
| }; | ||||
|  | ||||
| // Extend ImGuiDragFlags_ | ||||
| enum ImGuiDragFlagsPrivate_ | ||||
| { | ||||
|     ImGuiDragFlags_Vertical                 = 1 << 20   // Should this widget be orientated vertically? | ||||
| }; | ||||
|  | ||||
| // Extend ImGuiSliderFlags_ | ||||
| enum ImGuiSliderFlagsPrivate_ | ||||
| { | ||||
|     ImGuiSliderFlags_Vertical               = 1 << 20   // Should this slider be orientated vertically? | ||||
| }; | ||||
|  | ||||
| // Extend ImGuiSelectableFlags_ | ||||
| enum ImGuiSelectableFlagsPrivate_ | ||||
| { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user