Index: thunar/thunar-permissions-chooser.c =================================================================== --- thunar/thunar-permissions-chooser.c (revision 22583) +++ thunar/thunar-permissions-chooser.c (working copy) @@ -883,6 +883,10 @@ g_list_foreach (groups, (GFunc) g_object_ref, NULL); } + /* make sure that the group list includes the file group */ + if (G_UNLIKELY (g_list_find (groups, group) == NULL)) + groups = g_list_prepend (groups, g_object_ref (G_OBJECT (group))); + /* sort the groups according to group_compare() */ groups = g_list_sort_with_data (groups, group_compare, group);