summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Cardell Widerkrantz <mc@hack.org>2011-06-05 07:32:07 +0200
committerMichael Cardell Widerkrantz <mc@hack.org>2011-06-05 07:32:07 +0200
commit5955b409084a4271485c96fef95da3067597ef27 (patch)
tree829596d4a22e3d8dec3e94d1c66bea3f82d3c2b1
parent9f0fa0845bd7ea80920a99b2a30eb697396403a1 (diff)
downloadmcwm-5955b409084a4271485c96fef95da3067597ef27.zip
Comments.
-rw-r--r--mcwm.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mcwm.c b/mcwm.c
index 20636bc..d71ff1c 100644
--- a/mcwm.c
+++ b/mcwm.c
@@ -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;