From e09646784a64621fa6911fcc7a812ab7851e55e2 Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Thu, 25 May 2023 22:49:02 +0200 Subject: Add some useful comment --- src/widget.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/widget.h') 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; -- cgit v1.2.3