diff options
author | 2023-05-29 22:25:00 +0200 | |
---|---|---|
committer | 2023-05-29 22:25:14 +0200 | |
commit | 8c8fc0572c3b87629079cee52124c45092aa98c1 (patch) | |
tree | 42c85cf475240b74f618897e44904af90f71f65e | |
parent | 303a68baba19d07112e48fc6382281ea6eba1e40 (diff) | |
download | cherry-8c8fc0572c3b87629079cee52124c45092aa98c1.tar.gz cherry-8c8fc0572c3b87629079cee52124c45092aa98c1.zip |
Cheange vertical alignment of some comment
-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; |