11
0

Accepting request 345444 from home:alarrosa:branches2:KDE:Frameworks5

- Renamed userlist model property from UsersThresholdToDisableAvatars
  to disableAvatarsThreshold as in the patch finally accepted 
  by sddm developers.

OBS-URL: https://build.opensuse.org/request/show/345444
OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/plasma5-workspace?expand=0&rev=126
This commit is contained in:
Hrvoje Senjan
2015-11-20 15:17:36 +00:00
committed by Git OBS Bridge
parent 3c33137d27
commit b323ae9ca6
2 changed files with 8 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ Index: plasma-workspace-5.4.3/lookandfeel/contents/components/UserSelect.qml
property alias selectedIndex: usersList.currentIndex
property alias delegate: usersList.delegate
property alias notification: notificationLabel.text
+ property bool showUserList: (usersList.model.count && usersList.model.usersThresholdToDisableAvatars) ? usersList.model.count <= usersList.model.usersThresholdToDisableAvatars : true
+ property bool showUserList: (usersList.model.count && usersList.model.disableAvatarsThreshold) ? usersList.model.count <= usersList.model.disableAvatarsThreshold : true
+ property alias pwFieldEnabled: userPasswordPrompt.pwFieldEnabled
activeFocusOnTab: true

View File

@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Nov 20 15:03:49 UTC 2015 - alarrosa@suse.com
- Renamed userlist model property from UsersThresholdToDisableAvatars
to disableAvatarsThreshold as in the patch finally accepted
by sddm developers.
-------------------------------------------------------------------
Wed Nov 11 17:03:49 UTC 2015 - alarrosa@suse.com