mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-14 00:55:20 +02:00
split enable_touch to touch_controls (for touchscreen controls) and touch_gui
touch_gui provide adjustment to the interface, so it's more touch friendly Signed-off-by: David Heidelberg <david@ixit.cz>
This commit is contained in:
@@ -11,4 +11,12 @@ void migrate_settings()
|
||||
g_settings->getBool("opaque_water") ? "false" : "true");
|
||||
g_settings->remove("opaque_water");
|
||||
}
|
||||
|
||||
// Converts enable_touch to touch_controls/touch_gui
|
||||
if (g_settings->existsLocal("enable_touch")) {
|
||||
bool value = g_settings->getBool("enable_touch");
|
||||
g_settings->setBool("touch_controls", value);
|
||||
g_settings->setBool("touch_gui", value);
|
||||
g_settings->remove("enable_touch");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user