Anandkumar
Anandkumar

Reputation: 71

Issue with SWT Modal dialog when using SWT-AWT bridge in Linux

We have developed a RCP product with OSIG Plugin. Every thing is working fine in windows. But the problem is with Linux(GTK) We used Code:

Composite composite = new Composite(parent, SWT.EMBEDDED | SWT.NO_BACKGROUND | SWT.APPLICATION_MODAL); 
frame = swt_awt.new_frame(composite); 

When we open any SWT modal dialog, this frame is not blocked. Other than this frame other SWT area got blocked and are not accessible. I hope its internal implementation. Can any one give some suggestion whether is there any work around. I am trying since 2 weeks. please help me

Eclipse: eclipse-jee-indigo-SR2-win32 OS : RHEL 6

Upvotes: 0

Views: 498

Answers (1)

Krease
Krease

Reputation: 16225

This sounds like it's probably an Eclipse bug - the SWT_AWT bridge is historically a rather buggy area, especially on non-Windows platforms. Check here for the set of open SWT_AWT bugs to see if yours is already entered (or won't be fixed).

Upvotes: 0

Related Questions