Patrick Ziegler

Results 237 comments of Patrick Ziegler

> @ptziegler do you think you can reproduce the problem in a standalone snippet? That class isn't really trivial, so I'd first have to understand what exactly it does... but...

Going back to the original problem of the Eclipse IDE getting stuck when calling `gtk_init()`: I think I figured out what's causing this problem... In short: GTK3 and GTK4 must...

> > Reason most likely being that the AccessibleObject hasn't been implemented for GTK4, so events are fired using a NULL handle. > > [@ptziegler](https://github.com/ptziegler) do you think you can...

The same behavior can also be seen on KDE (Kubuntu 24.04) ~~whoops, missed how that was also reported in the original post~~ ![Image](https://github.com/user-attachments/assets/4e7cf892-37f9-4b13-acfe-4a3095183091)

A trivial reproducer for this problem is: ```java public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell(display); shell.setText("Snippet 1"); shell.setLayout(new...

> Is this Wayland specific? I can't reproduce on RHEL 9.2/X11/KDE. I don't think so. Based on @deepika-u 's screenshot, it looks fine with a Ubuntu/Wayland combination. And on my...

It's the theme, just as @maccasoft suspected. The text is truncated when using the "Breeze" application style and fine when going back to the "default" theme. This is the same...

Thanks! I'll give it a try later but I think there's already a very high chance the reason you don't see it on your side is because of this section:...

> Thank you all, I found the GTK3 theme settings in LXQt (I'm not very familiar with LXQt or KDE) and indeed seems an issue only with Breeze, all other...

I've created https://github.com/eclipse-platform/eclipse.platform.swt/pull/2258 to illustrate how those changes look like. Given that the Breeze theme looks fine with GTK4, the culprit might be on either side. It's just as likely...