mirror of https://github.com/0intro/wmii
Remove long deprecated special treatment of the '!' tag.
This commit is contained in:
parent
52be8779bf
commit
c3b818e241
14
NEWS
14
NEWS
|
@ -1,11 +1,13 @@
|
|||
3.10b1:
|
||||
* Xft is now loaded on demand
|
||||
* /colrules widths may now be specified in pixels
|
||||
* Xft is now loaded on demand.
|
||||
* /colrules widths may now be specified in pixels.
|
||||
* /tagrules has been replaced with the more general /rules
|
||||
* Add witray system tray program
|
||||
* Floating clients can be collapsed by clicking their layout boxes
|
||||
* Dock windows act more like dock windows
|
||||
* Fixed some managed move bugs
|
||||
* Add witray system tray program.
|
||||
* Floating clients can be collapsed by clicking their layout boxes.
|
||||
* Dock windows act more like dock windows.
|
||||
* Fixed some managed move bugs.
|
||||
* The FocusFloating and FocusColumn events have been removed.
|
||||
* The tag '!' is no longer special.
|
||||
|
||||
3.9.2:
|
||||
* Work around mawk bug that broke wmiirc.
|
||||
|
|
|
@ -1145,7 +1145,7 @@ client_applytags(Client *c, const char *tags) {
|
|||
if(!strcmp(cur, "~"))
|
||||
c->floating = add ? On : Never;
|
||||
else {
|
||||
if(!strcmp(cur, "!") || !strcmp(cur, "sel"))
|
||||
if(!strcmp(cur, "sel"))
|
||||
cur = selview->name;
|
||||
else if(Mbsearch(cur, badtags, bsstrcmp))
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue