Fix temporary screencapture showing phantom windows

* Fix #9200
This commit is contained in:
Jonathan White 2023-03-05 22:43:34 -05:00
parent 102ce04b2d
commit 881e6b5a8b
No known key found for this signature in database
GPG key ID: 440FC65F2E0C6E01
2 changed files with 5 additions and 2 deletions

View file

@ -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);