From 0c583b51143454d4792aade83c4f5875c718870b Mon Sep 17 00:00:00 2001 From: neyfua Date: Fri, 7 Aug 2026 05:36:36 +0700 Subject: [PATCH] refactor(obs-integration): use another glyph icon for Finished status --- obs-integration/panel.luau | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obs-integration/panel.luau b/obs-integration/panel.luau index d1291de..2d898d6 100644 --- a/obs-integration/panel.luau +++ b/obs-integration/panel.luau @@ -359,7 +359,7 @@ local STATUS_STYLE = { blocked = { glyph = "clock", color = "on_surface_variant", labelKey = "status_blocked" }, excluded = { glyph = "ban", color = "on_surface_variant", labelKey = "status_excluded" }, unbuildable = { glyph = "ban", color = "on_surface_variant", labelKey = "status_unbuildable" }, - finished = { glyph = "check", color = "tertiary", labelKey = "status_finished" }, + finished = { glyph = "circle-dot", color = "tertiary", labelKey = "status_finished" }, unknown = { glyph = "help-circle", color = "on_surface_variant", labelKey = "status_unknown" }, }