diff --git a/app/qml/FindDevicesPage.qml b/app/qml/FindDevicesPage.qml --- a/app/qml/FindDevicesPage.qml +++ b/app/qml/FindDevicesPage.qml @@ -49,18 +49,18 @@ text: switch (parseInt(section)) { case DevicesModel.Paired: - return i18n("Paired") + return i18n("Remembered") case DevicesModel.Reachable: - return i18n("Reachable") + return i18n("Available") case (DevicesModel.Reachable | DevicesModel.Paired): - return i18n("Paired & Reachable") + return i18n("Connected") } } } model: DevicesSortProxyModel { - sourceModel: DevicesModel { displayFilter: DevicesModel.Reachable } + sourceModel: DevicesModel {} } delegate: Kirigami.BasicListItem { width: ListView.view.width diff --git a/app/qml/main.qml b/app/qml/main.qml --- a/app/qml/main.qml +++ b/app/qml/main.qml @@ -104,12 +104,12 @@ property var objects: [findDevicesAction] Instantiator { model: DevicesSortProxyModel { - sourceModel: DevicesModel { displayFilter: DevicesModel.Paired } + sourceModel: DevicesModel { displayFilter: DevicesModel.Paired | DevicesModel.Reachable } } delegate: Kirigami.Action { iconName: model.iconName text: display + "\n" + toolTip - enabled: status & DevicesModel.Reachable + visible: status & DevicesModel.Reachable checked: pageStack.currentItem && pageStack.currentItem.currentDevice == device onTriggered: { root.pageStack.clear()