From 69a9c222d09a928451aec814c7fd796731494a4b Mon Sep 17 00:00:00 2001 From: Rares Visalom Date: Sun, 9 Jul 2017 19:25:49 +0300 Subject: [PATCH] search: Disable multiline descriptions Having descriptions with multiple lines will clutter the view and make it more confusing for the user. Apart from that, it also makes the search result a lot bigger, potentially losing general vertical alignment. https://bugzilla.gnome.org/show_bug.cgi?id=749957 --- js/ui/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/search.js b/js/ui/search.js index dd3ea1318..4b2cd520a 100644 --- a/js/ui/search.js +++ b/js/ui/search.js @@ -125,7 +125,7 @@ const ListSearchResult = new Lang.Class({ }, _highlightTerms: function() { - let markup = this._resultsView.highlightTerms(this.metaInfo['description']); + let markup = this._resultsView.highlightTerms(this.metaInfo['description'].split('\n')[0]); this._descriptionLabel.clutter_text.set_markup(markup); },