From c1590d9ed7b964bcd294b9c9bca0f6205f0e77a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 19 Sep 2012 12:40:32 +0200 Subject: [PATCH] Revert "messageTray: Fix summary position in RTL locales" This reverts commit e6ba7c6e4054f77570ab62e9e10745df50a43731. The original issue is fixed by Clutter commit 64c7973c7429c. --- js/ui/messageTray.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index 5f6e17f67..30cb6a7e6 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1410,12 +1410,10 @@ const MessageTray = new Lang.Class({ actor.grab_key_focus(); })); global.focus_manager.add_group(this.actor); - let rtl = this.actor.get_text_direction() == Clutter.TextDirection.RTL; this._summary = new St.BoxLayout({ name: 'summary-mode', reactive: true, track_hover: true, - x_align: rtl ? Clutter.ActorAlign.START - : Clutter.ActorAlign.END, + x_align: Clutter.ActorAlign.END, x_expand: true, y_align: Clutter.ActorAlign.CENTER, y_expand: true });