diff --git a/js/ui/calendar.js b/js/ui/calendar.js index 0e03a2b4b..a79fd7e9f 100644 --- a/js/ui/calendar.js +++ b/js/ui/calendar.js @@ -122,7 +122,8 @@ const URLHighlighter = new Lang.Class({ _init: function(text, lineWrap, allowMarkup) { if (!text) text = ''; - this.actor = new St.Label({ reactive: true, style_class: 'url-highlighter' }); + this.actor = new St.Label({ reactive: true, style_class: 'url-highlighter', + x_expand: true, x_align: Clutter.ActorAlign.START }); this._linkColor = '#ccccff'; this.actor.connect('style-changed', Lang.bind(this, function() { let [hasColor, color] = this.actor.get_theme_node().lookup_color('link-color', false);