Skip to content

Commit 39f4f9c

Browse files
committed
bugfix: Virtual keyboard would always show on startup
1 parent 058c36b commit 39f4f9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/osdep/vkbd/vkbd.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ void vkbd_redraw()
946946
{
947947
AmigaMonitor* mon = &AMonitors[0];
948948

949-
if (!vkbdShow && vkbdCurrentX == vkbdStartX && vkbdCurrentY == vkbdStartY)
949+
if (!vkbdShow || (vkbdCurrentX == vkbdStartX && vkbdCurrentY == vkbdStartY))
950950
{
951951
return;
952952
}

0 commit comments

Comments
 (0)