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
This commit is contained in:
Rares Visalom 2017-07-09 19:25:49 +03:00 committed by Florian Müllner
parent b3d74bdb0f
commit 69a9c222d0

View File

@ -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);
},