Skip to content

Commit 52b0188

Browse files
committed
fix: The alphabet also closes when the launchpad is shut down
as title. PMS-BUG-289179
1 parent fbb5af8 commit 52b0188

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

qml/windowed/AppListView.qml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -386,5 +386,13 @@ FocusScope {
386386
}
387387
}
388388
}
389+
Connections {
390+
target: LauncherController
391+
function onVisibleChanged() {
392+
if (!LauncherController.visible) {
393+
alphabetCategoryPopup.close()
394+
}
395+
}
396+
}
389397
}
390398
}

0 commit comments

Comments
 (0)