https://bugs.kde.org/show_bug.cgi?id=460981
Nate Graham <n...@kde.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |niccolo.venera...@gmail.com --- Comment #2 from Nate Graham <n...@kde.org> --- Basically we need this change: diff --git applets/taskmanager/package/contents/ui/main.qml applets/taskmanager/package/contents/ui/main.qml index 706ebe80d..0a48376b5 100644 --- applets/taskmanager/package/contents/ui/main.qml +++ applets/taskmanager/package/contents/ui/main.qml @@ -59,6 +59,8 @@ MouseArea { } return !tasks.vertical ? 0 : LayoutManager.preferredMinHeight(); } + Layout.maximumWidth: tasks.vertical ? -1 : [the width it *would* consume if Layout.fillWidth were set] + Layout.maximumHeight: !tasks.vertical ? -1 : [the height it *would* consume if Layout.fillHeight were set] //BEGIN TODO: this is not precise enough: launchers are smaller than full tasks Layout.preferredWidth: { But I can't figure out how to get those width and height values. Niccolò, any ideas? -- You are receiving this mail because: You are watching all bug changes.