Skip to content
Snippets Groups Projects
Commit dc7ec713 authored by Theo Linkspfeifer's avatar Theo Linkspfeifer :speech_balloon: Committed by Alexander Schwinn
Browse files

Fix drop location check for bookmarks

(followup of bug #11586)
parent 1b78a9d0
No related branches found
No related tags found
No related merge requests found
......@@ -1935,8 +1935,8 @@ thunar_shortcuts_model_drop_possible (ThunarShortcutsModel *model,
if (shortcut->group == THUNAR_SHORTCUT_GROUP_PLACES_BOOKMARKS)
return TRUE;
/* we can drop at the end of the bookmarks (before network header) */
if (shortcut->group == THUNAR_SHORTCUT_GROUP_NETWORK_HEADER)
/* we can drop at the end of the bookmarks (before devices header) */
if (shortcut->group == THUNAR_SHORTCUT_GROUP_DEVICES_HEADER)
return TRUE;
return FALSE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment