diff options
author | Michael Cardell Widerkrantz <mc@hack.org> | 2011-06-05 07:32:07 +0200 |
---|---|---|
committer | Michael Cardell Widerkrantz <mc@hack.org> | 2011-06-05 07:32:07 +0200 |
commit | 5955b409084a4271485c96fef95da3067597ef27 (patch) | |
tree | 829596d4a22e3d8dec3e94d1c66bea3f82d3c2b1 /mcwm.c | |
parent | 9f0fa0845bd7ea80920a99b2a30eb697396403a1 (diff) | |
download | mcwm-5955b409084a4271485c96fef95da3067597ef27.zip |
Comments.
Diffstat (limited to 'mcwm.c')
-rw-r--r-- | mcwm.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -151,11 +151,11 @@ struct client { xcb_drawable_t id; /* ID of this window. */ bool usercoord; /* X,Y was set by -geom. */ - int16_t x; /* X coordinate. Only updated when maxed. */ - int16_t y; /* Y coordinate. Ditto. */ - uint16_t width; /* Width in pixels. Ditto. */ - uint16_t height; /* Height in pixels. Ditto. */ - struct sizepos origsize; + int16_t x; /* X coordinate. */ + int16_t y; /* Y coordinate. */ + uint16_t width; /* Width in pixels. */ + uint16_t height; /* Height in pixels. */ + struct sizepos origsize; /* Original size if we're currently maxed. */ uint16_t min_width, min_height; /* Hints from application. */ uint16_t max_width, max_height; int32_t width_inc, height_inc; |