diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-03-02 21:17:14 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-03-02 21:17:14 -0500 |
commit | e07e0318666e9b05b2a78b7de0979d5706cc28b7 (patch) | |
tree | e01a2587666d01a59eddb38003e008420505b845 /src/connection_dialog.cpp | |
parent | 2c2d9e9f39ea780b5a04159f9c62fd5540471b86 (diff) | |
download | lingo-ap-tracker-e07e0318666e9b05b2a78b7de0979d5706cc28b7.tar.gz lingo-ap-tracker-e07e0318666e9b05b2a78b7de0979d5706cc28b7.tar.bz2 lingo-ap-tracker-e07e0318666e9b05b2a78b7de0979d5706cc28b7.zip |
Added sunwarp shuffle
Diffstat (limited to 'src/connection_dialog.cpp')
-rw-r--r-- | src/connection_dialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/connection_dialog.cpp b/src/connection_dialog.cpp index 9dd9984..45be8b8 100644 --- a/src/connection_dialog.cpp +++ b/src/connection_dialog.cpp | |||
@@ -4,10 +4,10 @@ | |||
4 | 4 | ||
5 | ConnectionDialog::ConnectionDialog() | 5 | ConnectionDialog::ConnectionDialog() |
6 | : wxDialog(nullptr, wxID_ANY, "Connect to Archipelago") { | 6 | : wxDialog(nullptr, wxID_ANY, "Connect to Archipelago") { |
7 | server_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_server, wxDefaultPosition, | 7 | server_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_server, |
8 | {300, -1}); | 8 | wxDefaultPosition, {300, -1}); |
9 | player_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_player, wxDefaultPosition, | 9 | player_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_player, |
10 | {300, -1}); | 10 | wxDefaultPosition, {300, -1}); |
11 | password_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_password, | 11 | password_box_ = new wxTextCtrl(this, -1, GetTrackerConfig().ap_password, |
12 | wxDefaultPosition, {300, -1}); | 12 | wxDefaultPosition, {300, -1}); |
13 | 13 | ||