ColumnsMinSpacing=6.0f;// Minimum horizontal spacing between two columns
ColumnsMinSpacing=6.0f;// Minimum horizontal spacing between two columns
ScrollbarWidth=16.0f;// Width of the vertical scrollbar
ScrollbarWidth=16.0f;// Width of the vertical scrollbar
GrabMinSize=10.0f;// Minimum width/height of a slider or scrollbar grab
GrabMinSize=10.0f;// Minimum width/height of a slider or scrollbar grab
DisplaySafeAreaPadding=ImVec2(22,22);// Window positions are clamped to be visible within the display area. If you cannot see the edge of your screen (e.g. on a TV) increase the safe area padding
DisplayWindowPadding=ImVec2(22,22);// Window positions are clamped to be visible within the display area by at least this amount. Only covers regular windows.
DisplaySafeAreaPadding=ImVec2(4,4);// If you cannot see the edge of your screen (e.g. on a TV) increase the safe area padding. Covers popups/tooltips as well regular windows.
if(window->AutoFitFrames<=0&&g.IO.DisplaySize.x>0.0f&&g.IO.DisplaySize.y>0.0f)// Ignore zero-sized display explicitly to avoid losing positions if a window manager reports zero-sized window when initializing or minimizing.
if(window->AutoFitFrames<=0&&g.IO.DisplaySize.x>0.0f&&g.IO.DisplaySize.y>0.0f)// Ignore zero-sized display explicitly to avoid losing positions if a window manager reports zero-sized window when initializing or minimizing.
floatColumnsMinSpacing;// Minimum horizontal spacing between two columns
floatColumnsMinSpacing;// Minimum horizontal spacing between two columns
floatScrollbarWidth;// Width of the vertical scrollbar
floatScrollbarWidth;// Width of the vertical scrollbar
floatGrabMinSize;// Minimum width/height of a slider or scrollbar grab
floatGrabMinSize;// Minimum width/height of a slider or scrollbar grab
ImVec2DisplaySafeAreaPadding;// Window positions are clamped to be visible within the display area. If you cannot see the edge of your screen (e.g. on a TV) increase the safe area padding.
ImVec2DisplayWindowPadding;// Window positions are clamped to be visible within the display area by at least this amount. Only covers regular windows.
ImVec2DisplaySafeAreaPadding;// If you cannot see the edge of your screen (e.g. on a TV) increase the safe area padding. Covers popups/tooltips as well regular windows.