mirror of
https://github.com/labwc/labwc.git
synced 2026-04-12 08:21:13 -04:00
view.h: changed the type of tiled in struct view to enum view_edge
The type enum view_edge used to be defined in a .c file, so a
structure member 'tiled' in struct view had to be defined to
use another type.
Later (2023-08-02, commit 1ee8715) the definition of enum view_edge
was moved to view.h, so now 'tiled' can be defined to use that type.
This commit is contained in:
parent
797e743c8a
commit
6f6818cbbc
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ struct view {
|
||||||
bool minimized;
|
bool minimized;
|
||||||
enum view_axis maximized;
|
enum view_axis maximized;
|
||||||
bool fullscreen;
|
bool fullscreen;
|
||||||
uint32_t tiled; /* private, enum view_edge in src/view.c */
|
enum view_edge tiled;
|
||||||
bool inhibits_keybinds;
|
bool inhibits_keybinds;
|
||||||
|
|
||||||
/* Pointer to an output owned struct region, may be NULL */
|
/* Pointer to an output owned struct region, may be NULL */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue