https://bugs.kde.org/show_bug.cgi?id=479183
Antonio Rojas <aro...@archlinux.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |aro...@archlinux.org --- Comment #3 from Antonio Rojas <aro...@archlinux.org> --- (In reply to Nicolas Fella from comment #1) > I suspect > https://code.qt.io/cgit/qt/qtdeclarative.git/commit/ > ?id=b9bfdea0e2c6721d2306af0ecc44f88da9988957 caused it Confirmed. Somehow model.actionList seems to be immutable. This fixes it for me, but i don't know if it's the right fix (hence not creating a PR) --- a/applets/kickoff/package/contents/ui/AbstractKickoffItemDelegate.qml +++ b/applets/kickoff/package/contents/ui/AbstractKickoffItemDelegate.qml @@ -58,7 +58,7 @@ T.ItemDelegate { function openActionMenu(x = undefined, y = undefined) { if (!hasActionList) { return; } - let actions = model.actionList; + var actions = [].concat(model.actionList); const favoriteActions = Tools.createFavoriteActions( i18n, //i18n() function callback view.model.favoritesModel, -- You are receiving this mail because: You are watching all bug changes.