Introduction
Introduction Statistics Contact Development Disclaimer Help
fix for earlier overlay width patch (there was a conflict with multirow overlay…
git clone git://git.suckless.org/svkbd
Log
Files
Refs
README
LICENSE
---
commit bd3620acf47d9a351fd345ea02b19c3095b92a4f
parent c2251315e5e3916293313a71ce0cd92f79c7b220
Author: Maarten van Gompel <[email protected]>
Date: Sun, 7 Mar 2021 00:33:20 +0100
fix for earlier overlay width patch (there was a conflict with multirow overlay…
Diffstat:
M svkbd.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/svkbd.c b/svkbd.c
@@ -924,8 +924,8 @@ showoverlay(int idx)
}
while (keys[j].keysym == 0)
j++;
- if (overlay[i].width)
- j += overlay[i].width;
+ if (overlay[i].width > 1)
+ j += overlay[i].width - 1;
keys[j].label = overlay[i].label;
keys[j].label2 = overlay[i].label2;
keys[j].keysym = overlay[i].keysym;
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.