mirror of
https://github.com/Drezil/imgui.git
synced 2025-07-06 04:58:47 +02:00
Drags, Sliders: Removed locking behavior with min > max (added in 1.73)
This commit is contained in:
@ -634,13 +634,15 @@ enum ImGuiButtonFlagsPrivate_
|
||||
// Extend ImGuiDragFlags_
|
||||
enum ImGuiDragFlagsPrivate_
|
||||
{
|
||||
ImGuiDragFlags_Vertical = 1 << 20 // Should this widget be orientated vertically?
|
||||
ImGuiDragFlags_Vertical = 1 << 20, // Should this widget be orientated vertically?
|
||||
ImGuiDragFlags_ReadOnly = 1 << 21
|
||||
};
|
||||
|
||||
// Extend ImGuiSliderFlags_
|
||||
enum ImGuiSliderFlagsPrivate_
|
||||
{
|
||||
ImGuiSliderFlags_Vertical = 1 << 20 // Should this slider be orientated vertically?
|
||||
ImGuiSliderFlags_Vertical = 1 << 20, // Should this slider be orientated vertically?
|
||||
ImGuiSliderFlags_ReadOnly = 1 << 21
|
||||
};
|
||||
|
||||
// Extend ImGuiSelectableFlags_
|
||||
|
Reference in New Issue
Block a user