-
Bug
-
Resolution: Fixed
-
P3
-
7u4
-
b16
-
x86
-
os_x
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2224401 | 8 | Alexandr Scherbatiy | P3 | Resolved | Fixed | b40 |
Related NetBeans bug:
https://www.netbeans.org/bugzilla/show_bug.cgi?id=208500
Screenshot of the problem:
http://bugzilla-attachments-208500.netbeans.org/bugzilla/attachment.cgi?id=115808
NetBeans IDE uses HTML in titles of tabs in the output window to highlight the outputs which are important to the user. On 7u4 on Mac the HTML breaks tabs appearance.
If possible NetBeans team would like to have this fixed on Java side in 7u4. Otherwise we will need to turn off HTML highlighting of the important output tabs in NetBeans for the users.
To reproduce the issue run the code:
---------------------------------
import javax.swing.*;
public class MyTabbedPane {
public static void main(String[] args) throws Exception {
SwingUtilities.invokeAndWait(new Runnable() {
@Override
public void run() {
createAndShowGUI();
}
});
}
private static void createAndShowGUI() {
JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 300);
JTabbedPane tabbedPane = new JTabbedPane();
for (int i = 0; i < 4; i++) {
String title = "<html><i>Title</i>" + i;
tabbedPane.insertTab(title, null, new JPanel(), "tip " + i, i);
tabbedPane.setTabComponentAt(i, new JLabel(title));
}
frame.getContentPane().add(tabbedPane);
frame.setVisible(true);
}
}
---------------------------------
https://www.netbeans.org/bugzilla/show_bug.cgi?id=208500
Screenshot of the problem:
http://bugzilla-attachments-208500.netbeans.org/bugzilla/attachment.cgi?id=115808
NetBeans IDE uses HTML in titles of tabs in the output window to highlight the outputs which are important to the user. On 7u4 on Mac the HTML breaks tabs appearance.
If possible NetBeans team would like to have this fixed on Java side in 7u4. Otherwise we will need to turn off HTML highlighting of the important output tabs in NetBeans for the users.
To reproduce the issue run the code:
---------------------------------
import javax.swing.*;
public class MyTabbedPane {
public static void main(String[] args) throws Exception {
SwingUtilities.invokeAndWait(new Runnable() {
@Override
public void run() {
createAndShowGUI();
}
});
}
private static void createAndShowGUI() {
JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 300);
JTabbedPane tabbedPane = new JTabbedPane();
for (int i = 0; i < 4; i++) {
String title = "<html><i>Title</i>" + i;
tabbedPane.insertTab(title, null, new JPanel(), "tip " + i, i);
tabbedPane.setTabComponentAt(i, new JLabel(title));
}
frame.getContentPane().add(tabbedPane);
frame.setVisible(true);
}
}
---------------------------------
- backported by
-
JDK-2224401 [macosx] JTabbedPane tabs with HTML text do not render correctly
-
- Resolved
-