Changeset 75910 in vbox
- Timestamp:
- Dec 3, 2018 2:14:40 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127114
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIGuestControlFileTable.cpp
r75905 r75910 992 992 } 993 993 994 if (!item->isDirectory()) 995 return; 996 if (!item->isOpened()) 997 readDirectory(item->path(),item); 998 changeLocation(index); 994 if (item->isDirectory() || (item->isSymLink() && item->isTargetADirectory())) 995 { 996 if (!item->isOpened()) 997 readDirectory(item->path(),item); 998 changeLocation(index); 999 } 999 1000 } 1000 1001
Note:
See TracChangeset
for help on using the changeset viewer.