diff --git a/src/core/Global.ttslua b/src/core/Global.ttslua
index 46dc2a71..c46e0403 100644
--- a/src/core/Global.ttslua
+++ b/src/core/Global.ttslua
@@ -615,9 +615,15 @@ end
local PlayerMatAPI = require("playermat/PlaymatApi")
function onClick_applySettings()
- printToAll("---------------------", "White")
- printToAll("Applying settings...", "White")
+ local printed = false
+
for id, state in pairs(optionPanel) do
+ if not printed then
+ printToAll("---------------------", "White")
+ printToAll("Applying settings...", "White")
+ printed = true
+ end
+
if state then print(id) end
-- option 1: Snap tags
@@ -627,6 +633,12 @@ function onClick_applySettings()
end
end
+
+ if not printed then
+ printToAll("---------------------", "White")
+ printToAll("Not settings selected!", "White")
+ end
+
end
function onClick_toggleUi(_, title)
diff --git a/xml/Global.xml b/xml/Global.xml
index fcb08160..89a4626b 100644
--- a/xml/Global.xml
+++ b/xml/Global.xml
@@ -1,31 +1,29 @@
-
-
+
+
+
-
+
-
-
-
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+