summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xmake/core/theme/theme.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/xmake/core/theme/theme.lua b/xmake/core/theme/theme.lua
index 6ab9c592b..6258eb721 100644
--- a/xmake/core/theme/theme.lua
+++ b/xmake/core/theme/theme.lua
@@ -63,6 +63,10 @@ function theme._interpreter()
-- define apis
interp:api_define(theme._apis())
+ -- the spinner should be able to have the same character occur several times
+ -- cf. https://github.com/xmake-io/xmake/pull/6543#issuecomment-2970305842
+ interp:deduplication_policy_set("text.spinner.chars", false)
+
-- save interpreter
theme._INTERPRETER = interp