Skip to content

Commit

Permalink
remove bad character
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-ludwig committed Dec 2, 2024
1 parent 2067d57 commit 40da919
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public enum BannerType {GOOD, INFO, WARNING, ERROR}
public MessageBanner(String message, BannerType bannerType) {
super(message);
setBorder(BorderFactory.createEmptyBorder(3, GuiUtils.SMALL_GAP, 3, GuiUtils.SMALL_GAP));
` setOpaque(true);
setOpaque(true);

switch (bannerType) {
case GOOD -> setBackground(Colors.GOOD_IS_GREEN_PALE); //todo change to text green later
Expand Down

0 comments on commit 40da919

Please sign in to comment.