From 73e6632c6d48b5a68971f38855c8e9472394d0cc Mon Sep 17 00:00:00 2001 From: TorosFanny Date: Sat, 19 Jul 2025 08:16:15 +0800 Subject: [PATCH] Vertical panel time ellipsis post-Gnome update (ASCII colon split) After a Gnome update, the Dash-to-Panel plugin showed ellipses for time in vertical mode. Analysis revealed the hour - minute separator changed to an ASCII colon. To fix this, I updated the code's delimiter to the ASCII colon. Post - modification, time display is back to normal, ensuring users see accurate time in vertical mode post - update. --- src/panel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panel.js b/src/panel.js index 4b1b946..0974b3c 100644 --- a/src/panel.js +++ b/src/panel.js @@ -1357,7 +1357,7 @@ export const Panel = GObject.registerClass( !setClockText(datetimeParts) && !setClockText(time) ) { - let timeParts = time.split('∶') + let timeParts = time.split(':') if (!this._clockFormat) { this._clockFormat = DESKTOPSETTINGS.get_string('clock-format')