diff --git a/plasmoid/package/contents/ui/DevicesPage.qml b/plasmoid/package/contents/ui/DevicesPage.qml index f39721e..3cb90f6 100644 --- a/plasmoid/package/contents/ui/DevicesPage.qml +++ b/plasmoid/package/contents/ui/DevicesPage.qml @@ -28,6 +28,8 @@ Item { spacing: 0 RowLayout { + Layout.fillWidth: true + PlasmaCore.IconItem { Layout.preferredWidth: units.iconSizes.small Layout.preferredHeight: units.iconSizes.small @@ -68,6 +70,7 @@ Item { DetailView { id: detailsView visible: item.expanded + Layout.fillWidth: true model: DelegateModel { model: plasmoid.nativeInterface.devModel diff --git a/plasmoid/package/contents/ui/DirectoriesPage.qml b/plasmoid/package/contents/ui/DirectoriesPage.qml index 070ebe0..841333a 100644 --- a/plasmoid/package/contents/ui/DirectoriesPage.qml +++ b/plasmoid/package/contents/ui/DirectoriesPage.qml @@ -42,6 +42,7 @@ ColumnLayout { RowLayout { id: itemSummary + Layout.fillWidth: true PlasmaCore.IconItem { Layout.preferredWidth: units.iconSizes.small @@ -114,6 +115,7 @@ ColumnLayout { DetailView { id: detailsView visible: item.expanded + Layout.fillWidth: true model: DelegateModel { model: plasmoid.nativeInterface.dirModel diff --git a/plasmoid/package/contents/ui/DownloadsPage.qml b/plasmoid/package/contents/ui/DownloadsPage.qml index 70fd925..96b50a3 100644 --- a/plasmoid/package/contents/ui/DownloadsPage.qml +++ b/plasmoid/package/contents/ui/DownloadsPage.qml @@ -29,6 +29,7 @@ Item { RowLayout { id: itemSummary + Layout.fillWidth: true RowLayout { spacing: units.smallSpacing @@ -72,8 +73,8 @@ Item { DetailView { id: detailsView - width: parent.width visible: item.expanded + Layout.fillWidth: true model: DelegateModel { model: plasmoid.nativeInterface.downloadModel