]> git.sur5r.net Git - i3/i3/commitdiff
inline comments for enum values
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 18 Feb 2013 09:41:34 +0000 (10:41 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 18 Feb 2013 09:41:34 +0000 (10:41 +0100)
include/data.h

index 374a70fbe8758149769ce6d79f79196d80b19b5b..1632efc76b8e7c6c21082fd09934930c05f544e7 100644 (file)
@@ -569,11 +569,15 @@ struct Con {
     /** callbacks */
     void(*on_remove_child)(Con *);
 
-    /** not a scratchpad window, auto centered scratchpad window, or
-     * user positioned scratchpad window. */
     enum {
+        /* Not a scratchpad window. */
         SCRATCHPAD_NONE = 0,
+
+        /* Just moved to scratchpad, not resized by the user yet.
+         * Window will be auto-centered and sized appropriately. */
         SCRATCHPAD_FRESH = 1,
+
+        /* The user changed position/size of the scratchpad window. */
         SCRATCHPAD_CHANGED = 2
     } scratchpad_state;