diff options
author | Saturneric <[email protected]> | 2021-07-04 19:48:22 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-07-04 19:48:22 +0000 |
commit | 62970671ccf5368e6044c88b576d5c0e53c1124a (patch) | |
tree | 113b7503fc8e1473d719d69f3ea2d8b49141f8b5 /src/ui/widgets/FilePage.cpp | |
parent | Merge branch 'main' into develop (diff) | |
download | GpgFrontend-62970671ccf5368e6044c88b576d5c0e53c1124a.tar.gz GpgFrontend-62970671ccf5368e6044c88b576d5c0e53c1124a.zip |
Improve the access method and interface of fast file operation
Diffstat (limited to 'src/ui/widgets/FilePage.cpp')
-rw-r--r-- | src/ui/widgets/FilePage.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ui/widgets/FilePage.cpp b/src/ui/widgets/FilePage.cpp index 91299f7f..bab6cf68 100644 --- a/src/ui/widgets/FilePage.cpp +++ b/src/ui/widgets/FilePage.cpp @@ -46,7 +46,7 @@ FilePage::FilePage(QWidget *parent) : QWidget(parent) { createPopupMenu(); - upLevelButton = new QPushButton("<"); + upLevelButton = new QPushButton("Up"); connect(upLevelButton, SIGNAL(clicked(bool)), this, SLOT(slotUpLevel())); refreshButton = new QPushButton("Refresh"); @@ -188,7 +188,6 @@ void FilePage::slotOpenItem() { if (mainWindow != nullptr) mainWindow->slotOpenFile(mPath); } - emit pathChanged(mPath); } void FilePage::slotDeleteItem() { |