Fixed a stupid typo in previous commit

This commit is contained in:
OLEGSHA 2021-08-26 12:11:21 +03:00
parent dd80df2cf2
commit 98c383bf7d
Signed by: OLEGSHA
GPG Key ID: E57A4B08D64AFF7A

View File

@ -47,7 +47,7 @@ public class GraphicsBackend {
private static boolean allowDisablingCursor; private static boolean allowDisablingCursor;
static { static {
String key = GraphicsBackend.class.getName() + ".allowDisablingCursor"; String key = GraphicsBackend.class.getName() + ".allowDisablingCursor";
allowDisablingCursor = Boolean.parseBoolean(System.getProperty(key, "false")); allowDisablingCursor = Boolean.parseBoolean(System.getProperty(key, "true"));
} }
private static boolean forceCursorToCenter = false; private static boolean forceCursorToCenter = false;