[gnome-shell/wip/fmuellner/notification-redux+sass: 92/122] messageTray: Some more RTL fixes
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/fmuellner/notification-redux+sass: 92/122] messageTray: Some more RTL fixes
- Date: Tue, 17 Feb 2015 15:11:42 +0000 (UTC)
commit 1d049588107a8e0200efd330f47b9ba64a4f952a
Author: Florian Müllner <fmuellner gnome org>
Date: Mon Feb 16 03:56:18 2015 +0100
messageTray: Some more RTL fixes
js/ui/messageTray.js | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js
index 69a6020..8c69e78 100644
--- a/js/ui/messageTray.js
+++ b/js/ui/messageTray.js
@@ -620,7 +620,8 @@ const Notification = new Lang.Class({
let titleBox = new St.BoxLayout();
this._contentBox.add_actor(titleBox);
- this._titleLabel = new St.Label({ x_expand: true });
+ this._titleLabel = new St.Label({ x_expand: true,
+ x_align: Clutter.ActorAlign.START });
titleBox.add_actor(this._titleLabel);
this._secondaryIcon = new St.Icon({ style_class: 'notification-secondary-icon',
@@ -633,7 +634,8 @@ const Notification = new Lang.Class({
visible: this.expanded });
titleBox.add_actor(this._closeButton);
- this._bannerBodyBin = new St.Widget();
+ this._bannerBodyBin = new St.Widget({ x_expand: true,
+ x_align: Clutter.ActorAlign.START });
this._bannerBodyBin.layout_manager = new LabelExpanderLayout();
this._contentBox.add_actor(this._bannerBodyBin);
@@ -789,9 +791,7 @@ const Notification = new Lang.Class({
let label = new URLHighlighter(this.bannerBodyText, this.bannerBodyMarkup);
label.actor.x_expand = true;
- label.actor.y_expand = true;
label.actor.x_align = Clutter.ActorAlign.START;
- label.actor.y_align = Clutter.ActorAlign.START;
label.actor.clutter_text.single_line_mode = true;
this._bannerBodyBin.add_actor(label.actor);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]