change: auto load when start or connect.

This commit is contained in:
2025-06-26 00:19:45 +08:00
parent b63048ecae
commit 9f0dc8ad8d
6 changed files with 14 additions and 2 deletions

View File

@@ -42,6 +42,11 @@ void FileManager::SetModeStr(const QString& modeStr, int type, ClientCore* clien
connect(fileHelper_.get(), &DirFileHelper::sigHome, this, &FileManager::ShowPath);
connect(fileHelper_.get(), &DirFileHelper::sigDirFile, this, &FileManager::ShowFile);
if (type == 0) {
evtHome();
evtFile();
}
}
void FileManager::InitControl()