mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Get file properties on file system changes
This commit is contained in:
parent
be34d417ef
commit
00a6e76ac2
1 changed files with 9 additions and 0 deletions
|
|
@ -741,6 +741,14 @@ begin
|
|||
TabHeader.Top:= pnlHeader.Height;
|
||||
|
||||
dgPanel.OnTopLeftChanged:= @dgPanelTopLeftChanged;
|
||||
|
||||
// By default always use some properties.
|
||||
FilePropertiesNeeded := [fpName,
|
||||
fpSize, // For info panel (total size, selected size)
|
||||
fpAttributes, // For distinguishing directories
|
||||
fpLink, // For distinguishing directories (link to dir) and link icons
|
||||
fpModificationTime // For selecting/coloring files (by SearchTemplate)
|
||||
];
|
||||
end;
|
||||
|
||||
procedure TBriefFileView.BeforeMakeFileList;
|
||||
|
|
@ -907,6 +915,7 @@ begin
|
|||
inherited DoUpdateView;
|
||||
TabHeader.UpdateHeader;
|
||||
dgPanel.UpdateView;
|
||||
Notify([fvnVisibleFilePropertiesChanged]);
|
||||
end;
|
||||
|
||||
procedure TBriefFileView.SetSorting(const NewSortings: TFileSortings);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue