diff options
author | saturneric <[email protected]> | 2025-04-16 18:05:00 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-04-16 18:05:00 +0000 |
commit | 272cf34f21ab1741d24673a7e3b7c95567a74cec (patch) | |
tree | 4497435e41a8bbdd7560cee57b2c8c4171099951 /src/ui/main_window/MainWindowUI.cpp | |
parent | fix: found bugs (diff) | |
download | GpgFrontend-272cf34f21ab1741d24673a7e3b7c95567a74cec.tar.gz GpgFrontend-272cf34f21ab1741d24673a7e3b7c95567a74cec.zip |
fix: testing and solve bugs found
Diffstat (limited to 'src/ui/main_window/MainWindowUI.cpp')
-rw-r--r-- | src/ui/main_window/MainWindowUI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/main_window/MainWindowUI.cpp b/src/ui/main_window/MainWindowUI.cpp index 26c3a8ad..41463b7a 100644 --- a/src/ui/main_window/MainWindowUI.cpp +++ b/src/ui/main_window/MainWindowUI.cpp @@ -611,7 +611,7 @@ void MainWindow::create_dock_windows() { view_menu_->addAction(info_board_dock_->toggleViewAction()); connect(m_key_list_, &KeyList::SignalKeyChecked, this, - &MainWindow::slot_update_operations_menu_by_checked_keys); + [=]() { slot_update_operations_menu_by_checked_keys(~0); }); } } // namespace GpgFrontend::UI |