From afb405782c3aa10c083b21c46bb1e890dbb07452 Mon Sep 17 00:00:00 2001 From: MOZGIII Date: Mon, 22 Jun 2020 15:41:58 +0300 Subject: [PATCH] dateMenu: Do not ellipsize clock This addresses the issue with ellipsized clock that occurs when using extensions that move the clock from the middle to the side of the top bar. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1327 Signed-off-by: MOZGIII --- js/ui/dateMenu.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/dateMenu.js b/js/ui/dateMenu.js index 7fc7c3828..e0cf29847 100644 --- a/js/ui/dateMenu.js +++ b/js/ui/dateMenu.js @@ -594,6 +594,7 @@ class DateMenuButton extends PanelMenu.Button { this._clockDisplay = new St.Label({ style_class: 'clock' }); this._clockDisplay.clutter_text.y_align = Clutter.ActorAlign.CENTER; + this._clockDisplay.clutter_text.ellipsize = Pango.EllipsizeMode.NONE; this._indicator = new MessagesIndicator();