From 3d8cb6c504b940ded3ca388bd49b172455a5e32c Mon Sep 17 00:00:00 2001 From: Theo Linkspfeifer Date: Sun, 8 Mar 2020 13:16:41 +0100 Subject: [PATCH] Restore previous order within Devices group in shortcuts view --- thunar/thunar-shortcuts-model.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/thunar/thunar-shortcuts-model.h b/thunar/thunar-shortcuts-model.h index 6f3c231c..501c9287 100644 --- a/thunar/thunar-shortcuts-model.h +++ b/thunar/thunar-shortcuts-model.h @@ -83,13 +83,13 @@ enum _ThunarShortcutGroup /* 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_DEVICES_FILESYSTEM = (1 << 6), /* local filesystem */ + THUNAR_SHORTCUT_GROUP_DEVICES_VOLUMES = (1 << 7), /* local ThunarDevices */ + THUNAR_SHORTCUT_GROUP_DEVICES_MOUNTS = (1 << 8), /* local mounts, like cameras and archives */ /* THUNAR_SHORTCUT_GROUP_NETWORK */ THUNAR_SHORTCUT_GROUP_NETWORK_HEADER = (1 << 9), /* network header */ - THUNAR_SHORTCUT_GROUP_NETWORK_DEFAULT = (1 << 10), /* browse network */ + THUNAR_SHORTCUT_GROUP_NETWORK_DEFAULT = (1 << 10), /* browse network */ THUNAR_SHORTCUT_GROUP_NETWORK_MOUNTS = (1 << 11), /* remote ThunarDevices */ }; -- 2.25.0