about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-16 16:41:22 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-16 16:41:22 +0100
commitde6695792a7e24c925b18c74f913f82b0a0e9148 (patch)
tree149e7d71caff7652857a62b1c19245c93ef08ce6
parent6e22ccf7b1602b33624692eefd51b6398ffa5454 (diff)
downloaddwm-de6695792a7e24c925b18c74f913f82b0a0e9148.tar.gz
well, resize should be called in dofloat anyways ;)
-rw-r--r--view.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/view.c b/view.c
index 1d483c4..ccbb454 100644
--- a/view.c
+++ b/view.c
@@ -55,6 +55,7 @@ dofloat(void) {
 			if(c->isbanned)
 				XMoveWindow(dpy, c->win, c->x, c->y);
 			c->isbanned = False;
+			resize(c, c->x, c->y, c->w, c->h, True);
 		}
 		else {
 			c->isbanned = True;
f='#n129'>129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209