|
From: Johannes S. (JIRA) <no...@sp...> - 2008-01-17 12:56:28
|
TabbedDialogPage doesn't paint if used with JideTabbedPane
----------------------------------------------------------
Key: RCP-524
URL: http://jira.springframework.org/browse/RCP-524
Project: Spring Framework Rich Client Project
Issue Type: Bug
Affects Versions: 1.0.0
Environment: Linux, Java 1.6, Jide Common:
<groupId>com.jidesoft</groupId>
<artifactId>jide-oss</artifactId>
<version>2.2.1.08</version>
Reporter: Johannes Schneider
Using the following component factory will result in visual problems when used within a TabbedDialogPage:
public class JideComponentFactory extends DefaultComponentFactory {
@Override
public JTabbedPane createTabbedPane() {
// return super.createTabbedPane();
JideTabbedPane tabbedPane = new JideTabbedPane();
tabbedPane.setBoldActiveTab( true );
tabbedPane.setHideOneTab( true );
return tabbedPane;
}
}
The border around the JTabbedPane is not drawn. This happens with different look and feels (JGoodies, Metal, GTK). The JideTabbedPane works as expected when used alone.
I think it might be related with org.springframework.richclient.dialog.control.ExtTabbedPane.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.springframework.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|