From 42af514c51057112d903b48f97e1fdcb1412553b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 3 Jan 2020 13:06:08 +0100 Subject: [PATCH] keyboard: Fix input-source switcher alignment More fallout from commit 104071acbd. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/916 --- js/ui/status/keyboard.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/js/ui/status/keyboard.js b/js/ui/status/keyboard.js index b5751023d..ae7acac34 100644 --- a/js/ui/status/keyboard.js +++ b/js/ui/status/keyboard.js @@ -117,11 +117,18 @@ class InputSourceSwitcher extends SwitcherPopup.SwitcherList { let box = new St.BoxLayout({ vertical: true }); let bin = new St.Bin({ style_class: 'input-source-switcher-symbol' }); - let symbol = new St.Label({ text: item.shortName }); + let symbol = new St.Label({ + text: item.shortName, + x_align: Clutter.ActorAlign.CENTER, + y_align: Clutter.ActorAlign.CENTER, + }); bin.set_child(symbol); box.add_child(bin); - let text = new St.Label({ text: item.displayName }); + let text = new St.Label({ + text: item.displayName, + x_align: Clutter.ActorAlign.CENTER, + }); box.add_child(text); this.addItem(box, text);