Skip to content

Commit 28de069

Browse files
committed
Change prediction feedback button texts
1 parent ef52c96 commit 28de069

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/botdetector/ui/BotDetectorPanel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ private JPanel predictionFeedbackPanel()
712712
c.gridy++;
713713
panel.add(feedbackTextScrollPane, c);
714714

715-
feedbackGoodButton = new JButton("Looks fine!");
715+
feedbackGoodButton = new JButton("Looks good");
716716
feedbackGoodButton.setToolTipText(String.format(tooltip, "correct"));
717717
feedbackGoodButton.setForeground(HEADER_COLOR);
718718
feedbackGoodButton.setFont(SMALL_FONT);
@@ -723,7 +723,7 @@ private JPanel predictionFeedbackPanel()
723723
c.gridwidth = 1;
724724
panel.add(feedbackGoodButton, c);
725725

726-
feedbackBadButton = new JButton("Not sure...");
726+
feedbackBadButton = new JButton("It's wrong");
727727
feedbackBadButton.setToolTipText(String.format(tooltip, "incorrect"));
728728
feedbackBadButton.setForeground(HEADER_COLOR);
729729
feedbackBadButton.setFont(SMALL_FONT);

0 commit comments

Comments
 (0)