Skip to content

Commit

Permalink
Enable top shadow. Otherwise it cuts off.
Browse files Browse the repository at this point in the history
  • Loading branch information
weisJ committed Jan 26, 2021
1 parent c6ee13d commit 2b525dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public DarkTooltipBorder() {
int shadowSize = UIManager.getInt("ToolTip.shadowSize");
float opacity = UIManager.getInt("ToolTip.shadowOpacity") / 100.0f;
shadowBorder = new DropShadowBorder(UIManager.getColor("ToolTip.borderShadowColor"), shadowSize, opacity,
2 * shadowSize, false, true, true, true);
2 * shadowSize, true, true, true, true);
paintShadow = UIManager.getBoolean("ToolTip.paintShadow");
}

Expand Down

0 comments on commit 2b525dd

Please sign in to comment.