diff options
| author | Russ Cox <rsc@swtch.com> | 2018-11-15 20:52:18 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@swtch.com> | 2018-11-15 20:52:18 -0500 |
| commit | 43b0d532bd3c1e4fbd4385c6470db12dbf7a5ad8 (patch) | |
| tree | cbf09c09a4cf28c58bc793c9a681954e7ada9c92 /src/cmd/acme/cols.c | |
| parent | fe92b4a0b1a8268238bce088cd081da9b802b465 (diff) | |
| download | plan9port-43b0d532bd3c1e4fbd4385c6470db12dbf7a5ad8.tar.gz plan9port-43b0d532bd3c1e4fbd4385c6470db12dbf7a5ad8.zip | |
acme: add 32x32 boxcursor
The only difference from the upscaled 16x16
is a one-pixel adjustment in the offset position,
but this at least exercises setcursor2.
Diffstat (limited to 'src/cmd/acme/cols.c')
| -rw-r--r-- | src/cmd/acme/cols.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/acme/cols.c b/src/cmd/acme/cols.c index b1fe23ba..6215e044 100644 --- a/src/cmd/acme/cols.c +++ b/src/cmd/acme/cols.c @@ -477,7 +477,7 @@ coldragwin(Column *c, Window *w, int but) Column *nc; clearmouse(); - setcursor(mousectl, &boxcursor); + setcursor2(mousectl, &boxcursor, &boxcursor2); b = mouse->buttons; op = mouse->xy; while(mouse->buttons == b) |
