mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Name may be empty in virtual FileSource (root path in Mounted Drive)
This commit is contained in:
parent
6b1a346caa
commit
3fabe6aef5
1 changed files with 3 additions and 1 deletions
|
|
@ -561,7 +561,9 @@ begin
|
|||
with FFiles[iIndex] do
|
||||
begin
|
||||
lblFileName.Caption:= Name;
|
||||
lblFile.Caption:= Name;
|
||||
if lblFileName.Caption = emptyStr then
|
||||
lblFileName.Caption:= FFileSource.GetDisplayFileName(FFiles[iIndex]);
|
||||
lblFile.Caption:= lblFileName.Caption;
|
||||
lblFolder.Caption:= Path;
|
||||
|
||||
if not (fpCreationTime in SupportedProperties) then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue