diff options
-rw-r--r-- | src/widget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widget.h b/src/widget.h index c82eef8..d0c005d 100644 --- a/src/widget.h +++ b/src/widget.h @@ -9,10 +9,10 @@ /* The parent of all widgets */ typedef struct CherryWidget { - int x, y; /* Coordinates */ + int x, y; /* Coordinates */ CherryDimension *dimension; /* Size of the widget */ - int visible; /* Is this visible? */ - list_t widgets; /* A list of children widgets */ + int visible; /* Is this visible? */ + list_t widgets; /* A list of children widgets */ /* Xlib stuff */ // XSizeHints hints; |