https://bugs.kde.org/show_bug.cgi?id=518170
cwo <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #4 from cwo <[email protected]> --- > The issue is in ListOfGridsView.qml:44: > (sourceModel as Kicker.AppsModel).trigger(sourceIndex.row, actionId, > argument) > > Removing the type assertion fixes the problem: > sourceModel.trigger(sourceIndex.row, actionId, argument) This seems like a Qt bug, if we do the equivalent let originalmodel = (sourceModel as Kicker.AppsModel) originalmodel.trigger(sourceIndex.row, actionId, argument) it works without issues. Waiting for Qt 6.11 to arrive in Fedora, this is the kind of thing that might already be fixed (and if it is, we can put in a workaround for 6.10). -- You are receiving this mail because: You are watching all bug changes.
