Browse Source

Fix java 8 incompatible code.

pull/97/head
weisj 5 years ago
parent
commit
f51aa03648
  1. 10
      core/src/main/java/com/github/weisj/darklaf/ui/DarkPopupFactory.java

10
core/src/main/java/com/github/weisj/darklaf/ui/DarkPopupFactory.java

@ -31,14 +31,16 @@ import javax.swing.*;
import java.awt.*; import java.awt.*;
public class DarkPopupFactory extends PopupFactory { public class DarkPopupFactory extends PopupFactory {
@Override @Override
protected Popup getPopup(final Component owner, final Component contents, public Popup getPopup(final Component owner, final Component contents,
final int x, final int y, final boolean heavyWeight) throws IllegalArgumentException { final int x, final int y) throws IllegalArgumentException {
Popup popup = super.getPopup(owner, contents, x, y, heavyWeight); Popup popup = super.getPopup(owner, contents, x, y);
if (popup.getClass().getSimpleName().endsWith("MediumWeightPopup")) { if (popup.getClass().getSimpleName().endsWith("MediumWeightPopup")) {
if (contents instanceof JToolTip if (contents instanceof JToolTip
&& ((JToolTip) contents).getBorder() instanceof DarkTooltipBorder) { && ((JToolTip) contents).getBorder() instanceof DarkTooltipBorder) {
popup = super.getPopup(owner, contents, x, y, true); // null owner forces a heavyweight popup.
popup = super.getPopup(null, contents, x, y);
} else { } else {
JRootPane rootPane = SwingUtilities.getRootPane(contents); JRootPane rootPane = SwingUtilities.getRootPane(contents);
// Prevents decorations from being reinstalled. // Prevents decorations from being reinstalled.

Loading…
Cancel
Save