-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using vertical and horizontal Composite does not work under macOS anymore #1082
Comments
Most likely duplicate of #1012 |
@tkg1-de Please can you confirm macOS version and whether you use Intel or Silicon Mac. (A workaround is to use Temurin-17.0.9) |
closing as duplicate |
Please use this (also offered as a saved reply by github) to mark / close tickets as duplicate:
|
Duplicate of #1012 |
Yes, it seems really to be a duplicate of #1012. So closing is O.K. I use an Intel Mac (MacBook Pro 13-inch, 2019, Two Thunderbolt 3 ports). macOS 14.3.1 (latest version at this moment) Thanks a lot! |
Thanks. I wanted to confirm this bug occurs on Intel as well as ARM. |
I've written a complex program working fine for several years under macOS (Intel) and Windows as well. But after upgrading to newest Java 11 it doesn't work anymore on macOS. So I used the latest SWT 4.30 together with Java 17 (OpenJDK Runtime Environment Temurin-17.0.10+7 (build 17.0.10+7)). It doesn't work. On Windows everything is fine. On macOS the second horizontal Composite is not visible. I created a simple test class showing the problem.
This is the source code:
package main;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.RowData;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;
public class SimpleSWTCompositeTest {
}
The text was updated successfully, but these errors were encountered: