You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DirectoryData.cpp, DirectoryData.hpp
~ percentOfParent is const
FolderDisplay.hpp
~ UpdateTitle is now public
FolderDisplay.cpp
~ fix race condition by scheduling main UI event after reconnection
~ update parent item's subfolders slot in addition to size
interface_derived.h
~ recalculate stats in ProgressUpdate
~ update all titles in current display
Copy file name to clipboardExpand all lines: source/FolderDisplay.hpp
+10-9Lines changed: 10 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,16 @@ class FolderDisplay : public FolderDisplayBase{
49
49
voiddisplay();
50
50
static string sizeToString(const fileSize&);
51
51
bool abort = true;
52
+
53
+
/**
54
+
Sets the label in this display to the size of the item
55
+
@param isSizing pass true if the size operation is in progress, false otherwise
56
+
@note If the size of the current DirectoryData is 0, the item's size will display as Needs reload because the minimum size FatFileFinder reports is 1 byte.
@@ -77,15 +87,6 @@ class FolderDisplay : public FolderDisplayBase{
77
87
voidOnSelectionActivated(wxDataViewEvent&);
78
88
voidOnUpdateUI(wxCommandEvent&);
79
89
80
-
81
-
/**
82
-
Sets the label in this display to the size of the item
83
-
@param isSizing pass true if the size operation is in progress, false otherwise
84
-
@note If the size of the current DirectoryData is 0, the item's size will display as Needs reload because the minimum size FatFileFinder reports is 1 byte.
0 commit comments