From 0a4ce2aa22e09e0a66285914d039fddb3206a99b Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Tue, 30 Jan 2018 11:12:41 -0200 Subject: [PATCH] shell: Swap Display and Printers positions So that whenever the user opens the "Devices" section, the Display panel is the first panel to dislpay. This is because the user most likely always have a display, while they might not always have a printer available. https://bugzilla.gnome.org/show_bug.cgi?id=786606 --- shell/cc-panel-list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/cc-panel-list.c b/shell/cc-panel-list.c index db3382f6d..0fd093cf9 100644 --- a/shell/cc-panel-list.c +++ b/shell/cc-panel-list.c @@ -289,10 +289,10 @@ static const gchar * const panel_order[] = { "network", /* Devices page */ - "printers", + "display", "keyboard", "mouse", - "display", + "printers", "removable-media", "wacom", "color",