mirror of https://github.com/0intro/wmii
Fix drawing shape mask.
This commit is contained in:
parent
6724357027
commit
154f750e0a
|
@ -94,7 +94,7 @@ static void
|
||||||
drawdiv(Divide *d) {
|
drawdiv(Divide *d) {
|
||||||
|
|
||||||
fill(divmask, divmask->r, (Color){0});
|
fill(divmask, divmask->r, (Color){0});
|
||||||
drawimg(divmask, (Color){1}, (Color){1}, d);
|
drawimg(divmask, (Color){~0,~0,~0}, (Color){~0,~0,~0}, d);
|
||||||
drawimg(divimg, divcolor.bg, divcolor.border, d);
|
drawimg(divimg, divcolor.bg, divcolor.border, d);
|
||||||
|
|
||||||
copyimage(d->w, divimg->r, divimg, ZP);
|
copyimage(d->w, divimg->r, divimg, ZP);
|
||||||
|
|
13
man/wmii.1
13
man/wmii.1
|
@ -307,13 +307,24 @@ Additionally, the following keys are accepted and have
|
||||||
special meaning:
|
special meaning:
|
||||||
|
|
||||||
.RS 8
|
.RS 8
|
||||||
|
|
||||||
|
.RS
|
||||||
|
: continue
|
||||||
|
.RS
|
||||||
|
Normally, when a matching rule is encountered, rule
|
||||||
|
matching stops. When the continue key is provided
|
||||||
|
(with any value), matching continues at the next
|
||||||
|
rule.
|
||||||
|
.RE
|
||||||
|
.RE
|
||||||
.TP
|
.TP
|
||||||
default\-tags \fI<tags>\fR
|
default\-tags=\fI<tags>\fR
|
||||||
Like \fItags\fR, but only sets the tags if they can't be
|
Like \fItags\fR, but only sets the tags if they can't be
|
||||||
obtained from the client's group or from the
|
obtained from the client's group or from the
|
||||||
_WMII_TAGS window property. This key should be
|
_WMII_TAGS window property. This key should be
|
||||||
preferred to the \fItags\fR key in most cases.
|
preferred to the \fItags\fR key in most cases.
|
||||||
.RS -8
|
.RS -8
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
keys
|
keys
|
||||||
The \fIkeys\fR file contains a list of keys which
|
The \fIkeys\fR file contains a list of keys which
|
||||||
|
|
Loading…
Reference in New Issue