diff options
author | Nadia Holmquist Pedersen <nadia@nhp.sh> | 2023-06-24 16:14:13 +0200 |
---|---|---|
committer | Nadia Holmquist Pedersen <nadia@nhp.sh> | 2023-06-24 16:14:13 +0200 |
commit | 74b166cba3560102359ff65924d60b8dfaf0dd27 (patch) | |
tree | 822a5d7297e773580edc7e5c6c2fafbd31616804 /src/frontend/qt_sdl | |
parent | 391ad8c95e9b942ff39705f2c3cd5359aef633b3 (diff) |
Add a description to the wifi settings dialog
Explains that the settings only affect online play, not local
multiplayer
Diffstat (limited to 'src/frontend/qt_sdl')
-rw-r--r-- | src/frontend/qt_sdl/WifiSettingsDialog.ui | 56 |
1 files changed, 37 insertions, 19 deletions
diff --git a/src/frontend/qt_sdl/WifiSettingsDialog.ui b/src/frontend/qt_sdl/WifiSettingsDialog.ui index 444e1d5..0cbd723 100644 --- a/src/frontend/qt_sdl/WifiSettingsDialog.ui +++ b/src/frontend/qt_sdl/WifiSettingsDialog.ui @@ -6,8 +6,8 @@ <rect> <x>0</x> <y>0</y> - <width>572</width> - <height>217</height> + <width>570</width> + <height>341</height> </rect> </property> <property name="sizePolicy"> @@ -24,12 +24,30 @@ <enum>QLayout::SetFixedSize</enum> </property> <item> + <widget class="QLabel" name="label_4"> + <property name="styleSheet"> + <string notr="true">QLabel { + margin-bottom: 12px; +}</string> + </property> + <property name="text"> + <string><html><head/><body><p>These settings control how melonDS connects to the internet for online features (typically called &quot;Nintendo Wi-Fi Connection&quot;) in games. </p><p>Local multiplayer features do not use the same network protocols as online play, so the settings here will have no effect on them.</p></body></html></string> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + <property name="margin"> + <number>0</number> + </property> + </widget> + </item> + <item> <widget class="QGroupBox" name="groupBox"> <property name="title"> <string>Network mode</string> </property> <layout class="QGridLayout" name="gridLayout"> - <item row="0" column="0"> + <item row="1" column="0"> <widget class="QRadioButton" name="rbIndirectMode"> <property name="whatsThis"> <string><html><head/><body><p>Indirect mode uses libslirp. It requires no extra setup and is easy to use.</p></body></html></string> @@ -39,7 +57,7 @@ </property> </widget> </item> - <item row="1" column="0"> + <item row="2" column="0"> <widget class="QRadioButton" name="rbDirectMode"> <property name="whatsThis"> <string><html><head/><body><p>Direct mode directly routes network traffic to the host network. It is the most reliable, but requires an ethernet connection.</p><p><br/></p><p>Non-direct mode uses a layer of emulation to get around this, but is more prone to problems.</p></body></html></string> @@ -58,14 +76,21 @@ <string>Direct mode settings</string> </property> <layout class="QGridLayout" name="gridLayout_3"> - <item row="0" column="0"> - <widget class="QLabel" name="label"> + <item row="3" column="1"> + <widget class="QLabel" name="lblAdapterIP"> <property name="text"> - <string>Network adapter:</string> + <string>[PLACEHOLDER]</string> + </property> + </widget> + </item> + <item row="2" column="0"> + <widget class="QLabel" name="label_2"> + <property name="text"> + <string>MAC address:</string> </property> </widget> </item> - <item row="0" column="1"> + <item row="1" column="1"> <widget class="QComboBox" name="cbxDirectAdapter"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> @@ -85,33 +110,26 @@ </widget> </item> <item row="1" column="0"> - <widget class="QLabel" name="label_2"> + <widget class="QLabel" name="label"> <property name="text"> - <string>MAC address:</string> + <string>Network adapter:</string> </property> </widget> </item> - <item row="1" column="1"> + <item row="2" column="1"> <widget class="QLabel" name="lblAdapterMAC"> <property name="text"> <string>[PLACEHOLDER]</string> </property> </widget> </item> - <item row="2" column="0"> + <item row="3" column="0"> <widget class="QLabel" name="label_3"> <property name="text"> <string>IP address:</string> </property> </widget> </item> - <item row="2" column="1"> - <widget class="QLabel" name="lblAdapterIP"> - <property name="text"> - <string>[PLACEHOLDER]</string> - </property> - </widget> - </item> </layout> </widget> </item> |