shell: Do not add a trailing dash in search target when comment is empty
When the comment is empty, we do not want to add a dash to the search target, as it will be a trailing one. https://bugzilla.gnome.org/show_bug.cgi?id=655487
This commit is contained in:
parent
c635d8e875
commit
48dec984db
1 changed files with 4 additions and 1 deletions
|
@ -199,7 +199,10 @@ cc_shell_model_add_item (CcShellModel *model,
|
|||
|
||||
pixbuf = load_pixbuf_for_gicon (icon);
|
||||
|
||||
search_target = g_strconcat (name, " - ", comment, NULL);
|
||||
if (comment && comment[0])
|
||||
search_target = g_strconcat (name, " - ", comment, NULL);
|
||||
else
|
||||
search_target = g_strdup (name);
|
||||
|
||||
gtk_list_store_insert_with_values (GTK_LIST_STORE (model), NULL, 0,
|
||||
COL_NAME, name,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue