Fixed displayFilter in plasmoid that not was updated when we changed the enum

This commit is contained in:
Albert Vaca 2014-06-27 16:05:49 +02:00
parent d14b4411cd
commit 5379bba551

View file

@ -68,7 +68,7 @@ Item {
anchors.fill: parent
model: KdeConnect.DevicesModel {
id: connectDeviceModel
displayFilter: 0x11
displayFilter: 3
}
delegate: DeviceDelegate { }
onCountChanged: shouldPlasmoidBeShown()
@ -81,7 +81,7 @@ Item {
anchors.fill: parent
id: devicesView
model: KdeConnect.DevicesModel {
displayFilter: 0x11
displayFilter: 3
}
delegate: DeviceDelegate {}
}