Skip to content

Commit

Permalink
Add locally label
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Apr 5, 2024
1 parent 7ad3a75 commit 31eb2db
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
public class ServerSelectDialog extends JFrame {
public ServerSelectDialog(
Runnable integratedServerRunnable, Consumer<RemoteServerData> remoteServerConsumer) {
setTitle("Connect to SoulFire Server");
setTitle("Connect to a SoulFire Server");

SFSwingUtils.setLogo(this);

Expand All @@ -56,6 +56,10 @@ public ServerSelectDialog(
var leftPanel = new JPanel();
leftPanel.setLayout(new BoxLayout(leftPanel, BoxLayout.Y_AXIS));
leftPanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));

var forBeginnersLabel = new JLabel("Run SoulFire locally:");
leftPanel.add(forBeginnersLabel);

var integratedServerButton = new JButton("Use Integrated Server");
integratedServerButton.addActionListener(
e -> {
Expand Down

0 comments on commit 31eb2db

Please sign in to comment.