[Bf-blender-cvs] [466d37e0b15] master: UI: remove check for HOME existing on unix

Campbell Barton noreply at git.blender.org
Wed Feb 26 08:23:11 CET 2020


Commit: 466d37e0b1551625209367c86a39f8f7992be2d8
Author: Campbell Barton
Date:   Wed Feb 26 18:19:29 2020 +1100
Branches: master
https://developer.blender.org/rB466d37e0b1551625209367c86a39f8f7992be2d8

UI: remove check for HOME existing on unix

This is such a corner case there is no need to make the UI aware of it.

===================================================================

M	source/blender/editors/space_file/fsmenu.c

===================================================================

diff --git a/source/blender/editors/space_file/fsmenu.c b/source/blender/editors/space_file/fsmenu.c
index f523c253a9e..ecbd4696e1b 100644
--- a/source/blender/editors/space_file/fsmenu.c
+++ b/source/blender/editors/space_file/fsmenu.c
@@ -809,10 +809,8 @@ void fsmenu_read_system(struct FSMenu *fsmenu, int read_bookmarks)
 
     if (read_bookmarks && home) {
 
-      if (BLI_exists(home)) {
-        fsmenu_insert_entry(
-            fsmenu, FS_CATEGORY_SYSTEM_BOOKMARKS, home, IFACE_("Home"), ICON_HOME, FS_INSERT_LAST);
-      }
+      fsmenu_insert_entry(
+          fsmenu, FS_CATEGORY_SYSTEM_BOOKMARKS, home, IFACE_("Home"), ICON_HOME, FS_INSERT_LAST);
 
       /* Follow the XDG spec, check if these are available. */
       GHash *xdg_map = fsmenu_xdg_user_dirs_parse(home);



More information about the Bf-blender-cvs mailing list