1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-03 20:32:07 -04:00

(settings): Enhance authentication checks in Greeter & LockScreen tabs

This commit is contained in:
purian23
2026-03-11 16:58:15 -04:00
committed by bbedward
parent 78357d45bb
commit 62c2e858ef
3 changed files with 73 additions and 10 deletions

View File

@@ -988,12 +988,20 @@ Singleton {
signal widgetDataChanged
signal workspaceIconsUpdated
function refreshAuthAvailability() {
if (isGreeterMode)
return;
Processes.settingsRoot = root;
Processes.detectFprintd();
Processes.detectU2f();
}
Component.onCompleted: {
if (!isGreeterMode) {
Processes.settingsRoot = root;
loadSettings();
initializeListModels();
Processes.detectFprintd();
refreshAuthAvailability();
Processes.checkPluginSettings();
}
}