Commit 0f26de9

Premysl Hruby <dfenze@gmail.com>
2008-08-22 09:26:30
applied fix of toggletag by Jan Kaliszewski
1 parent 840f937
Changed files (1)
dwm.c
@@ -1469,8 +1469,12 @@ togglefloating(const Arg *arg) {
 
 void
 toggletag(const Arg *arg) {
-	unsigned int mask = sel->tags ^ (arg->ui & TAGMASK);
+	unsigned int mask;
 
+	if (!sel)
+		return;
+	
+	mask = sel->tags ^ (arg->ui & TAGMASK);
 	if(sel && mask) {
 		sel->tags = mask;
 		arrange();