diff options
author | saturneric <[email protected]> | 2024-10-18 14:41:44 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-10-18 14:41:44 +0000 |
commit | 6ef5e5130c1aec4999e4e855b46234f581a7abe3 (patch) | |
tree | 481fa756b472fceac72aada840b3c038bb0114cb /src/ui/main_window/MainWindow.cpp | |
parent | fix: remove minimum size restriction of main window (diff) | |
download | GpgFrontend-6ef5e5130c1aec4999e4e855b46234f581a7abe3.tar.gz GpgFrontend-6ef5e5130c1aec4999e4e855b46234f581a7abe3.zip |
feat: add filter option of 'comment' at key list of main window
Diffstat (limited to 'src/ui/main_window/MainWindow.cpp')
-rw-r--r-- | src/ui/main_window/MainWindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/main_window/MainWindow.cpp b/src/ui/main_window/MainWindow.cpp index e0a5d369..4e70375e 100644 --- a/src/ui/main_window/MainWindow.cpp +++ b/src/ui/main_window/MainWindow.cpp @@ -63,7 +63,8 @@ void MainWindow::Init() noexcept { KeyMenuAbility::kSEARCH_BAR, GpgKeyTableColumn::kTYPE | GpgKeyTableColumn::kNAME | GpgKeyTableColumn::kKEY_ID | GpgKeyTableColumn::kEMAIL_ADDRESS | - GpgKeyTableColumn::kUSAGE | GpgKeyTableColumn::kOWNER_TRUST, + GpgKeyTableColumn::kUSAGE | GpgKeyTableColumn::kOWNER_TRUST | + GpgKeyTableColumn::kCOMMENT, this); info_board_ = new InfoBoardWidget(this); |