mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-13 07:17:13 -06:00
SplitPane: support tooltip texts in splitpane client properties (issue #198)
This commit is contained in:
@@ -183,6 +183,13 @@ public class FlatSplitPaneUI
|
|||||||
: (isLeftCollapsed()
|
: (isLeftCollapsed()
|
||||||
? "SplitPaneDivider.expandLeftToolTipText"
|
? "SplitPaneDivider.expandLeftToolTipText"
|
||||||
: "SplitPaneDivider.collapseRightToolTipText"));
|
: "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() );
|
return UIManager.getString( key, getLocale() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user