Browse Source

applied fix of toggletag by Jan Kaliszewski

Premysl Hruby 17 năm trước cách đây
mục cha
commit
0f26de991f
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  1. 5 1
      dwm.c

+ 5 - 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();