You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Use FramePadding (even for an unframed text node) to vertically align text baseline to regular widget height. Equivalent to calling AlignTextToFramePadding().
53
53
*/
54
-
publicstaticfinalintFramePadding = 1 << 1;
54
+
publicstaticfinalintFramePadding = 1 << 10;
55
55
/**
56
56
* Extend hit box to the right-most edge, even if not framed.
57
57
* This is not the default in order to allow adding other items on the same line.
58
58
* In the future we may refactor the hit system to be front-to-back, allowing natural overlaps and then this can become the default.
59
59
*/
60
-
publicstaticfinalintSpanAvailWidth = 1 << 1;
60
+
publicstaticfinalintSpanAvailWidth = 1 << 11;
61
61
/**
62
62
* Extend hit box to the left-most and right-most edges (bypass the indented area).
63
63
*/
64
-
publicstaticfinalintSpanFullWidth = 1 << 1;
64
+
publicstaticfinalintSpanFullWidth = 1 << 12;
65
65
/**
66
66
* (WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop)
0 commit comments