SplitPane: support tooltip texts in splitpane client properties (issue #198)

This commit is contained in:
Karl Tauber
2020-11-02 15:07:57 +01:00
parent b8c9433259
commit 3a784375d0

View File

@@ -183,6 +183,13 @@ public class FlatSplitPaneUI
: (isLeftCollapsed()
? "SplitPaneDivider.expandLeftToolTipText"
: "SplitPaneDivider.collapseRightToolTipText"));
// get text from client property
Object value = splitPane.getClientProperty( key );
if( value instanceof String )
return (String) value;
// get text from bundle
return UIManager.getString( key, getLocale() );
}
}