mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-24 12:42:32 +00:00
[ui] Correct the spelling of imui_size_t
Really, just a stale comment from when I first started down the imui path.
This commit is contained in:
parent
86326c8179
commit
34f16e10e4
1 changed files with 3 additions and 2 deletions
|
@ -83,12 +83,13 @@ typedef struct viewcont_s {
|
|||
unsigned resize_y:1; ///< If true, view's height follows parent's.
|
||||
unsigned bol_suppress:1; ///< If true, view_flow skips at start of line.
|
||||
unsigned flow_size:1; ///< If true, view's size is adjusted to flow.
|
||||
unsigned semantic_x:3; ///< layout size control (IMUI_SizeKind)
|
||||
unsigned semantic_y:3; ///< layout size control (IMUI_SizeKind)
|
||||
unsigned semantic_x:3; ///< layout size control (imui_size_t)
|
||||
unsigned semantic_y:3; ///< layout size control (imui_size_t)
|
||||
unsigned free_x:1; ///< don't set position automatically
|
||||
unsigned free_y:1; ///< don't set position automatically
|
||||
unsigned vertical:1; ///< true: layout is vertical, else horizontal
|
||||
unsigned active:1; ///< can respond to the mouse
|
||||
unsigned is_link:1; ///< has non-root reference component
|
||||
} viewcont_t;
|
||||
|
||||
enum {
|
||||
|
|
Loading…
Reference in a new issue