From 3de5a0602d5602c5f2b823406667e280bbd6f5ad Mon Sep 17 00:00:00 2001 From: Esube <154304658+Esube7@users.noreply.github.com> Date: Wed, 31 Jan 2024 14:28:23 +0300 Subject: [PATCH] Update NewStudentPollPanel.java --- GUI/Student/NewStudentPollPanel.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GUI/Student/NewStudentPollPanel.java b/GUI/Student/NewStudentPollPanel.java index 629e730..838f058 100644 --- a/GUI/Student/NewStudentPollPanel.java +++ b/GUI/Student/NewStudentPollPanel.java @@ -13,7 +13,7 @@ public class NewStudentPollPanel { public JPanel createNewStudentPollPanel() { // Create a title label and set its properties JLabel titleLabel = new JLabel("Poll Participation"); - titleLabel.setFont(new Font("Helvetica", Font.BOLD, 30)); + titleLabel.setFont(new Font("Helvetica", Font.BOLD, 35)); JButton participateButton = new JButton("Participate"); JButton cancelButton = new JButton("Cancel"); @@ -28,7 +28,7 @@ public JPanel createNewStudentPollPanel() { pollList = new JList<>(listModel); // Add sample poll questions - listModel.addElement("This is great - it is working"); // Backend team, do your thing + listModel.addElement("This is great the program is working"); // Backend team, do your thing // Create a main panel and set its layout JPanel mainPanel = new JPanel(new BorderLayout());