svkbd

simple virtual keyboard
git clone git://git.suckless.org/svkbd
Log | Files | Refs | README | LICENSE

commit 6a1431933125e26994554817baf5d5a85402b814
parent 378a1c8b308ebe09af1ad87ea00bf142313c6fdd
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Mon, 12 Jul 2021 12:51:52 +0200

change comment-style in .c file

Diffstat:
Msvkbd.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/svkbd.c b/svkbd.c @@ -1052,7 +1052,7 @@ showoverlay(int idx) if (overlay[i].keysym == XK_Cancel) { break; } - //certain modifier keys and basic keys are excluded from being overlayed: + /* certain modifier keys and basic keys are excluded from being overlayed: */ while (keys[j].keysym == 0 || keys[j].keysym == XK_Shift_L || keys[j].keysym == XK_Shift_R || keys[j].keysym == XK_Control_L || keys[j].keysym == XK_Control_R || keys[j].keysym == XK_Alt_L ||