I just recently updated from Kubuntu 22.04 to Kubuntu 25.04 and now I am noticing some really odd behavior with both programs I have written and the XOJO IDE.
I have a couple windows/forms that I set their location value for startup like so:
Me.Left = 75
Me.Top = 200
And now they both automatically open at center screen. ( The code above is from first window/form).
The comment feature no longer works. What I mean is that when I select multiple lines for to be commented out then go to Edit → Comment, it doesn’t apply the comment.
Sometimes when I first run a program to see how my changes have worked out and then I end the run, several tiny message boxes with no value will open then close.
This is all I have noticed so far. But the screen placement thing is frustrating to say the least.
So I think it has to do with the Wayland rendering engine. Not 100% certain though.
This is another oddity I have noticed across multiple Linux platforms, and that is if a DesktopButton.Pressed is used for what ever code, and I am in a DesktopTextField and I press enter the DesktopButton.Pressed code will execute. But if I change the DesktopButton.Pressed to DesktopButton.MouseDown and put the exact same code I had in the .Pressed area, this won’t happen and things work as they should.
On that DesktopButton, check and see if the Default property is set to True. If it is, then pressing return in a TextField is supposed to fire the Pressed event. Similarly, pressing ESC will fire the Pressed event on a button whose Cancel property is set to True.