JIDE: JideTabbedPane: fixed location of tab title editing box

This commit is contained in:
Karl Tauber
2021-03-27 18:22:10 +01:00
parent 69f52c8abd
commit 8e49904f8d
3 changed files with 31 additions and 0 deletions

View File

@@ -503,6 +503,13 @@ public class FlatJideTabbedPaneUI
super.layoutLabel( tabPlacement, metrics, tabIndex, title, icon, tabRect, iconRect, textRect, isSelected );
}
@Override
protected Rectangle getTabsTextBoundsAt( int tabIndex ) {
Rectangle rect = super.getTabsTextBoundsAt( tabIndex );
rect.x += getTabInsets( _tabPane.getTabPlacement(), tabIndex ).left;
return rect;
}
private boolean isLastInRun( int tabIndex ) {
int run = getRunForTab( _tabPane.getTabCount(), tabIndex );
return lastTabInRun( _tabPane.getTabCount(), run ) == tabIndex;