mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
parent
102ce04b2d
commit
881e6b5a8b
2 changed files with 5 additions and 2 deletions
|
@ -1663,8 +1663,10 @@ void MainWindow::applySettingsChanges()
|
|||
void MainWindow::setAllowScreenCapture(bool state)
|
||||
{
|
||||
m_allowScreenCapture = state;
|
||||
for (auto window : qApp->allWindows()) {
|
||||
osUtils->setPreventScreenCapture(window, !m_allowScreenCapture);
|
||||
for (auto window : qApp->topLevelWindows()) {
|
||||
if (window->isVisible()) {
|
||||
osUtils->setPreventScreenCapture(window, !m_allowScreenCapture);
|
||||
}
|
||||
}
|
||||
m_ui->actionAllowScreenCapture->blockSignals(true);
|
||||
m_ui->actionAllowScreenCapture->setChecked(m_allowScreenCapture);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue