about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-09-29 17:25:49 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-09-29 17:25:49 +0200
commit010fd21b2037923e9ba1f0d67a67bbf8d8da2c89 (patch)
tree17691514c5f13af0ffc951c93cd194979912d9a7
parent1802fad2f9b2a432b04f642b9e954159d1f2554f (diff)
downloaddwm-010fd21b2037923e9ba1f0d67a67bbf8d8da2c89.tar.gz
removed useless updatemaster
-rw-r--r--config.arg.h2
-rw-r--r--dwm.h1
-rw-r--r--main.c2
-rw-r--r--view.c7
4 files changed, 3 insertions, 9 deletions
diff --git a/config.arg.h b/config.arg.h
index 1e6a670..6a36c22 100644
--- a/config.arg.h
+++ b/config.arg.h
@@ -8,7 +8,7 @@ const char *tags[] = { "dev", "work", "net", "fnord", NULL };
 
 #define DEFMODE			dotile		/* dofloat */
 #define FLOATSYMBOL		"><>"
-#define STACKPOS		StackRight	/* StackLeft */
+#define STACKPOS		StackRight	/* StackLeft, StackBottom */
 #define TILESYMBOL		"[]="
 
 #define FONT			"-*-terminus-medium-*-*-*-12-*-*-*-*-*-iso10646-*"
diff --git a/dwm.h b/dwm.h
index ba50bf6..b33d073 100644
--- a/dwm.h
+++ b/dwm.h
@@ -174,7 +174,6 @@ extern void restack(void);			/* restores z layers of all clients */
 extern void togglestackpos(Arg *arg);		/* toggles stack position */
 extern void togglemode(Arg *arg);		/* toggles global arrange function (dotile/dofloat) */
 extern void toggleview(Arg *arg);		/* toggles the tag with arg's index (in)visible */
-extern void updatemaster(void);			/* updates master dimension */
 extern void view(Arg *arg);			/* views the tag with arg's index */
 extern void viewall(Arg *arg);			/* views all tags, arg is ignored */
 extern void zoom(Arg *arg);			/* zooms the focused client to master area, arg is ignored */
diff --git a/main.c b/main.c
index 488ebc1..a1fdde1 100644
--- a/main.c
+++ b/main.c
@@ -133,7 +133,7 @@ setup(void) {
 	sx = sy = 0;
 	sw = DisplayWidth(dpy, screen);
 	sh = DisplayHeight(dpy, screen);
-	updatemaster();
+	master = ((stackpos == StackBottom ? sh - bh : sw) * MASTER) / 100;
 
 	bx = by = 0;
 	bw = sw;
diff --git a/view.c b/view.c
index 72e32c7..7c56ac2 100644
--- a/view.c
+++ b/view.c
@@ -340,13 +340,8 @@ togglestackpos(Arg *arg) {
 		stackpos = STACKPOS;
 	else
 		stackpos = StackBottom;
-	updatemaster();
-	arrange(NULL);
-}
-
-void
-updatemaster(void) {
 	master = ((stackpos == StackBottom ? sh - bh : sw) * MASTER) / 100;
+	arrange(NULL);
 }
 
 void
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421