[gnome-shell] dateMenu: Do not ellipsize clock



commit 980a90f8fbab0efb2f9ef2f1a2f40e8639663ad1
Author: MOZGIII <mike-n narod ru>
Date:   Mon Jun 22 15:41:58 2020 +0300

    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 <mike-n narod ru>

 js/ui/dateMenu.js | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/js/ui/dateMenu.js b/js/ui/dateMenu.js
index ce0a1f6173..13d1d4019d 100644
--- a/js/ui/dateMenu.js
+++ b/js/ui/dateMenu.js
@@ -784,6 +784,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();
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]