diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/widget.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/widget.h b/src/widget.h index 4725e39..ac5bc4b 100644 --- a/src/widget.h +++ b/src/widget.h @@ -9,10 +9,10 @@ /* The parent of all widgets */ typedef struct CherryWidget { - int x, y; - CherryDimension *dimension; - int visible; - list_t components; + int x, y; /* Coordinates */ + CherryDimension *dimension; /* Size of the widget */ + int visible; /* Is this visible? */ + list_t components; /* A list of children widgets */ /* Xlib stuff */ // XSizeHints hints; |