diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js index 2a175fe9e..84efc7135 100644 --- a/js/ui/lookingGlass.js +++ b/js/ui/lookingGlass.js @@ -431,6 +431,11 @@ ErrorLog.prototype = { this.actor = new St.BoxLayout(); this.text = new St.Label(); this.actor.add(this.text); + // We need to override StLabel's default ellipsization when + // using line_wrap; otherwise ClutterText's layout is going + // to constrain both the width and height, which prevents + // scrolling. + this.text.clutter_text.ellipsize = Pango.EllipsizeMode.NONE; this.text.clutter_text.line_wrap = true; this.actor.connect('notify::mapped', Lang.bind(this, this._renderText)); },