[Xfce4-commits] [xfce/thunar] 01/01: Move places above devices in shortcuts view (bug #11586)
noreply at xfce.org
noreply at xfce.org
Sun Mar 8 01:00:29 CET 2020
This is an automated email from the git hooks/post-receive script.
a l e x p u s h e d a c o m m i t t o b r a n c h m a s t e r
in repository xfce/thunar.
commit 0e9f6d096dae8805390eca509b1d8384ca9f42d4
Author: Yousuf Philips <philipz85 at hotmail.com>
Date: Sat Mar 7 23:22:50 2020 +0400
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 0fe21b6..6f3c231 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 */
};
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list