From 0e9f6d096dae8805390eca509b1d8384ca9f42d4 Mon Sep 17 00:00:00 2001 From: Yousuf Philips <philipz85@hotmail.com> Date: Sat, 7 Mar 2020 23:22:50 +0400 Subject: [PATCH] Move places above devices in shortcuts view (bug #11586) Also unify the order of places and devices child elements with the order in tree view (move trash and file system to the bottom of their groups. --- thunar/thunar-shortcuts-model.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/thunar/thunar-shortcuts-model.h b/thunar/thunar-shortcuts-model.h index 0fe21b65e..6f3c231ce 100644 --- a/thunar/thunar-shortcuts-model.h +++ b/thunar/thunar-shortcuts-model.h @@ -74,23 +74,23 @@ typedef enum enum _ThunarShortcutGroup { - /* THUNAR_SHORTCUT_GROUP_DEVICES */ - THUNAR_SHORTCUT_GROUP_DEVICES_HEADER = (1 << 0), /* devices header */ - THUNAR_SHORTCUT_GROUP_DEVICES_FILESYSTEM = (1 << 1), /* local filesystem */ - THUNAR_SHORTCUT_GROUP_DEVICES_VOLUMES = (1 << 2), /* local ThunarDevices */ - THUNAR_SHORTCUT_GROUP_DEVICES_MOUNTS = (1 << 3), /* local mounts, like cameras and archives */ - /* THUNAR_SHORTCUT_GROUP_PLACES */ - THUNAR_SHORTCUT_GROUP_PLACES_HEADER = (1 << 4), /* places header */ - THUNAR_SHORTCUT_GROUP_PLACES_DEFAULT = (1 << 5), /* home and desktop */ - THUNAR_SHORTCUT_GROUP_PLACES_TRASH = (1 << 6), /* trash */ - THUNAR_SHORTCUT_GROUP_PLACES_BOOKMARKS = (1 << 7), /* gtk-bookmarks */ - THUNAR_SHORTCUT_GROUP_PLACES_COMPUTER = (1 << 11), /* computer */ + THUNAR_SHORTCUT_GROUP_PLACES_HEADER = (1 << 0), /* places header */ + THUNAR_SHORTCUT_GROUP_PLACES_COMPUTER = (1 << 1), /* computer */ + THUNAR_SHORTCUT_GROUP_PLACES_DEFAULT = (1 << 2), /* home and desktop */ + THUNAR_SHORTCUT_GROUP_PLACES_BOOKMARKS = (1 << 3), /* gtk-bookmarks */ + THUNAR_SHORTCUT_GROUP_PLACES_TRASH = (1 << 4), /* trash */ + + /* THUNAR_SHORTCUT_GROUP_DEVICES */ + THUNAR_SHORTCUT_GROUP_DEVICES_HEADER = (1 << 5), /* devices header */ + THUNAR_SHORTCUT_GROUP_DEVICES_VOLUMES = (1 << 6), /* local ThunarDevices */ + THUNAR_SHORTCUT_GROUP_DEVICES_MOUNTS = (1 << 7), /* local mounts, like cameras and archives */ + THUNAR_SHORTCUT_GROUP_DEVICES_FILESYSTEM = (1 << 8), /* local filesystem */ /* THUNAR_SHORTCUT_GROUP_NETWORK */ - THUNAR_SHORTCUT_GROUP_NETWORK_HEADER = (1 << 8), /* network header */ - THUNAR_SHORTCUT_GROUP_NETWORK_DEFAULT = (1 << 9), /* browse network */ - THUNAR_SHORTCUT_GROUP_NETWORK_MOUNTS = (1 << 10), /* remote ThunarDevices */ + THUNAR_SHORTCUT_GROUP_NETWORK_HEADER = (1 << 9), /* network header */ + THUNAR_SHORTCUT_GROUP_NETWORK_DEFAULT = (1 << 10), /* browse network */ + THUNAR_SHORTCUT_GROUP_NETWORK_MOUNTS = (1 << 11), /* remote ThunarDevices */ }; -- GitLab