summaryrefslogtreecommitdiff
path: root/sys/src/cmd/audio
diff options
context:
space:
mode:
authorSigrid Solveig Haflínudóttir <sigrid@ftrv.se>2022-11-28 16:17:09 +0000
committerSigrid Solveig Haflínudóttir <sigrid@ftrv.se>2022-11-28 16:17:09 +0000
commit1be74e0b703a569fee0129b0560f4e5b92da7f5b (patch)
tree553e442844b4d68f51c43caac838829492d56b76 /sys/src/cmd/audio
parentd376fac66cbd5efbe2f9f61a1e8b31af03a84a92 (diff)
audio/zuke: do not clip the rightmost column
Diffstat (limited to 'sys/src/cmd/audio')
-rw-r--r--sys/src/cmd/audio/zuke/zuke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/audio/zuke/zuke.c b/sys/src/cmd/audio/zuke/zuke.c
index 359f5a274..5320faa34 100644
--- a/sys/src/cmd/audio/zuke/zuke.c
+++ b/sys/src/cmd/audio/zuke/zuke.c
@@ -427,7 +427,7 @@ redraw_(int full)
p.x = Scrollwidth + 2 + 3;
for(j = 0; cols[j] != 0; j++){
- sel.max.x = p.x + colwidth[j] - 1;
+ sel.max.x = cols[j+1] ? (p.x + colwidth[j] - 1) : back->r.max.x;
replclipr(back, 0, sel);
if(playercurr != nil && playercurr->icytitle != nil && pcurplaying == i && cols[j] == Ptitle)
s = playercurr->icytitle;