Search in sources :

Example 1 with MultiLineTooltipUI

use of com.intellij.ui.MultiLineTooltipUI in project intellij-community by JetBrains.

the class SvnUpdatePanel method createUIComponents.

private void createUIComponents() {
    myLockOnDemand = new JCheckBox() {

        @Override
        public JToolTip createToolTip() {
            JToolTip toolTip = new JToolTip() {

                {
                    setUI(new MultiLineTooltipUI());
                }
            };
            toolTip.setComponent(this);
            return toolTip;
        }
    };
    myDepthCombo = new DepthCombo(true);
}
Also used : MultiLineTooltipUI(com.intellij.ui.MultiLineTooltipUI) DepthCombo(org.jetbrains.idea.svn.DepthCombo)

Aggregations

MultiLineTooltipUI (com.intellij.ui.MultiLineTooltipUI)1 DepthCombo (org.jetbrains.idea.svn.DepthCombo)1