I am cleaning up many years of unused categories. (Fedora 43. KMM 5.2.2 both Flatpak and Appimage 5332). And I notice a strange behavior. Let’s say I have the list of expense categories on the screen. I see two *in a row* that are both zero entries, so I want to delete them. If I second-button click on the top one, choose delete category, it will disappear as expected. Then the second soon-to-be-eviscerated category moves up under my cursor. IF I try to delete it in the same way, KMM just stares at me blankly; laughing; saying to itself “Is that all you’ve got?”. No response. No deletion.
Now, if instead, I start at the bottom, i.e., I delete the lower one in the list first. Then I move UP to the other to delete, all goes as expected. Thoughts? A
Corner case? Bug? ![]()
IPW nailed it! ![]()
Seems to be a difference between Qt5/KF5 and Qt6/KF6 again. On the Qt5 build I am unable to duplicate this. What I did was
- Create Expense account A (gets id
A000234) - Create Expense account AA (gets id
A000235) - Select A and delete it
On the console in the Qt5 installed version I see
current selection
Accounts: ("AStd::Expense")
--- here I created A and AA then right clicked on A
current selection
Accounts: ("A000234")
--- and deleted A
current selection
Accounts: ("A000235")
whereas on the Qt6 AppImage I am able to duplicate the behavior you report and get
current selection
Accounts: QList("AStd::Expense")
--- here I created A and AA then right clicked on A
current selection
Accounts: QList("A000234")
--- and deleted A
current selection
Accounts: QList("A000235")
No selections
on the console log. That last line is what’s causing the problem. I yet have no idea where it comes from.
1 Like
Created bug entry.
1 Like