From 846222c0dac6747256fd3d474db174643e84fee0 Mon Sep 17 00:00:00 2001 From: Fabian Vogt Date: Sat, 1 Oct 2016 19:22:36 +0200 Subject: [PATCH] Ignore default sddm face icons They are not compatible with the theme --- lookandfeel/contents/components/UserList.qml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) Index: plasma-workspace-5.17.80git.20210928T142611~d53fd656e/lookandfeel/contents/components/UserList.qml =================================================================== --- plasma-workspace-5.17.80git.20210928T142611~d53fd656e.orig/lookandfeel/contents/components/UserList.qml 2021-09-28 16:26:11.000000000 +0200 +++ plasma-workspace-5.17.80git.20210928T142611~d53fd656e/lookandfeel/contents/components/UserList.qml 2021-09-28 22:02:18.756685636 +0200 @@ -34,7 +34,13 @@ interactive: count > 1 delegate: UserDelegate { - avatarPath: model.icon || "" + avatarPath: { + var incompatible = /\/usr\/share\/sddm\/faces\/((root)?)\.face\.icon$/ + if (!model.icon || incompatible.test(model.icon)) + return "" + + return model.icon + } iconSource: model.iconName || "user-identity" fontSize: view.fontSize vtNumber: model.vtNumber