[gnome-software/wip/temp/ubuntu-xenial-rebased-corrected: 176/331] Sort snaps before other apps
- From: William Hua <williamhua src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software/wip/temp/ubuntu-xenial-rebased-corrected: 176/331] Sort snaps before other apps
- Date: Wed, 4 May 2016 14:13:19 +0000 (UTC)
commit 2196951f42ee39a9f8cef48cf9f112c8a59db080
Author: Robert Ancell <robert ancell canonical com>
Date: Wed Mar 30 15:55:47 2016 +1300
Sort snaps before other apps
src/gs-shell-search.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/src/gs-shell-search.c b/src/gs-shell-search.c
index 220bfa8..ebbbf74 100644
--- a/src/gs-shell-search.c
+++ b/src/gs-shell-search.c
@@ -255,6 +255,12 @@ gs_shell_search_get_app_sort_key (GsApp *app)
/* sort installed, removing, other */
key = g_string_sized_new (64);
+ /* sort snaps before other apps */
+ if (g_strcmp0 (gs_app_get_management_plugin (app), "snappy") == 0)
+ g_string_append (key, "9:");
+ else
+ g_string_append (key, "1:");
+
/* sort missing codecs before applications */
switch (gs_app_get_state (app)) {
case AS_APP_STATE_UNAVAILABLE:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]