diff --git a/CMakeLists.txt b/CMakeLists.txt index 56397cbca..00c010cc0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16.0) project(forceblur) -set(PROJECT_VERSION "1.1.0") +set(PROJECT_VERSION "1.1.1") set(PROJECT_VERSION_MAJOR 0) set(KF_MIN_VERSION "5.240.0") diff --git a/src/blur.cpp b/src/blur.cpp index 662bb4329..de0721f6c 100644 --- a/src/blur.cpp +++ b/src/blur.cpp @@ -326,7 +326,7 @@ void BlurEffect::slotWindowAdded(EffectWindow *w) }); } - windowFrameGeometryChangedConnections[w] = connect(w, &EffectWindow::windowFrameGeometryChanged, this, [this,w]() { + windowExpandedGeometryChangedConnections[w] = connect(w, &EffectWindow::windowExpandedGeometryChanged, this, [this,w]() { if (w) { updateBlurRegion(w); } @@ -352,9 +352,9 @@ void BlurEffect::slotWindowDeleted(EffectWindow *w) disconnect(*it); windowBlurChangedConnections.erase(it); } - if (auto it = windowFrameGeometryChangedConnections.find(w); it != windowFrameGeometryChangedConnections.end()) { + if (auto it = windowExpandedGeometryChangedConnections.find(w); it != windowExpandedGeometryChangedConnections.end()) { disconnect(*it); - windowFrameGeometryChangedConnections.erase(it); + windowExpandedGeometryChangedConnections.erase(it); } } diff --git a/src/blur.h b/src/blur.h index 653d35721..9de65afc2 100644 --- a/src/blur.h +++ b/src/blur.h @@ -159,7 +159,7 @@ public Q_SLOTS: QList blurStrengthValues; QMap windowBlurChangedConnections; - QMap windowFrameGeometryChangedConnections; + QMap windowExpandedGeometryChangedConnections; std::unordered_map m_windows; static BlurManagerInterface *s_blurManager; diff --git a/src/metadata.json b/src/metadata.json index 55d7cb389..4de720e66 100644 --- a/src/metadata.json +++ b/src/metadata.json @@ -1,5 +1,10 @@ { "KPlugin": { + "Authors": [ + { + "Name": "taj_ny" + } + ], "Category": "Appearance", "Description": "Blurs the background behind semi-transparent windows", "EnabledByDefault": false,