[gnome-software/wip/ubuntu-3-24: 9/13] Sort snaps before other apps



commit 2694d4bcb24507ab0146e7c8111df134bec7ab5d
Author: Robert Ancell <robert ancell canonical com>
Date:   Wed Mar 30 15:55:47 2016 +1300

    Sort snaps before other apps

 src/gs-search-page.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/src/gs-search-page.c b/src/gs-search-page.c
index b2dd5a7..615f15b 100644
--- a/src/gs-search-page.c
+++ b/src/gs-search-page.c
@@ -293,6 +293,12 @@ gs_search_page_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), "snap") == 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]