You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
final PreferencesTabBar tabBar = new PreferencesTabBar();
tabBar.addTab("General",null,null);
tabBar.addTab("Proofing",null,null);
tabBar.addTab("Saving",null,null);
final JComponent tabBarCom = tabBar.getComponent();
1. For JFrame:
final JFrame mainFrm = new JFrame();
tabBar.installWindowDraggerOnWindow(mainFrm);
MacUtils.makeWindowLeopardStyle(mainFrm.getRootPane());
mainFrm.getContentPane().add(tabBarCom);
2. For JDialog:
final JDialog mainDlg = new JDialog();
tabBar.installWindowDraggerOnWindow(mainDlg);
MacUtils.makeWindowLeopardStyle(mainDlg.getRootPane());
mainDlg.getContentPane().add(tabBarCom);
What is the expected output? What do you see instead?
Expected result:
The UI should appear like the below image in any environments listed below.
see: safari_pref_dialog.PNG
Acutally result:
In
What version of the product are you using? On what operating system?
Environment 1:
Leopard (Mac OS X 10.5)
Java 1.5.0_20
Environment 2:
Leopard (Mac OS X 10.5)
Java 1.6.0_15
Environment 3:
Snow Leopard (Mac OS X 10.6)
Java 1.5.0_20
Environment 4:
Snow Leopard (Mac OS X 10.6)
Java 1.6.0_15
Please provide any additional information below.
Original issue reported on code.google.com by [email protected] on 27 Apr 2010 at 5:06
Original issue reported on code.google.com by
[email protected]
on 27 Apr 2010 at 5:06Attachments:
The text was updated successfully, but these errors were encountered: