diff options
| author | Leifa <26681464+TrickyLeifa@users.noreply.github.com> | 2024-07-09 13:07:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-09 13:07:30 +0200 |
| commit | efd2571459924f40718130f7edd28a72a76b12d7 (patch) | |
| tree | 91751194abb0bfe1306976d676740b43a53dd81b /data | |
| parent | 662d4781d2653e02b9f3727a9299ded8c7b1eaa2 (diff) | |
Remove TCP entry point (#1007)
* Remove TCP entry point
Resolve #987
* Remove TCP entry point
* Servers that do not support WebSocket will be marked as `Legacy`
* Removal of TCP connection from the master will follow later.
* Tweaked error message
Diffstat (limited to 'data')
| -rw-r--r-- | data/ui/favorite_server_dialog.ui | 23 | ||||
| -rw-r--r-- | data/ui/lobby.ui | 18 |
2 files changed, 15 insertions, 26 deletions
diff --git a/data/ui/favorite_server_dialog.ui b/data/ui/favorite_server_dialog.ui index f0f60cb4..b90514dc 100644 --- a/data/ui/favorite_server_dialog.ui +++ b/data/ui/favorite_server_dialog.ui @@ -78,34 +78,13 @@ </widget> </item> <item row="3" column="0"> - <widget class="QLabel" name="label_6"> - <property name="text"> - <string>Protocol:</string> - </property> - </widget> - </item> - <item row="3" column="1"> - <widget class="QComboBox" name="protocol"> - <item> - <property name="text"> - <string>TCP</string> - </property> - </item> - <item> - <property name="text"> - <string>WEBSOCKET</string> - </property> - </item> - </widget> - </item> - <item row="4" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Description:</string> </property> </widget> </item> - <item row="4" column="1"> + <item row="3" column="1"> <widget class="QPlainTextEdit" name="description"> <property name="sizePolicy"> <sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding"> diff --git a/data/ui/lobby.ui b/data/ui/lobby.ui index ceb85ff0..fcc364e6 100644 --- a/data/ui/lobby.ui +++ b/data/ui/lobby.ui @@ -316,8 +316,14 @@ QScrollBar:horizontall { <item row="1" column="0"> <widget class="QTreeWidget" name="serverlist_tree"> <property name="styleSheet"> - <string notr="true">background-color: rgba(140, 140, 140, 255); -color: rgb(255, 255, 255);</string> + <string notr="true">QHeaderView, QTreeView { +background-color: rgba(140, 140, 140, 255); +color: rgb(255, 255, 255); +} + +QToolTip { +color: black; +}</string> </property> <property name="textElideMode"> <enum>Qt::ElideNone</enum> @@ -330,7 +336,7 @@ color: rgb(255, 255, 255);</string> <string>#</string> </property> <property name="textAlignment"> - <set>AlignTrailing|AlignVCenter</set> + <set>AlignLeading|AlignVCenter</set> </property> </column> <column> @@ -369,7 +375,11 @@ color: rgb(255, 255, 255);</string> </property> <property name="styleSheet"> <string notr="true">background-color: rgba(140, 140, 140, 255); -color: rgb(255, 255, 255);</string> +color: rgb(255, 255, 255); + +QToolTip { + color: black; +};</string> </property> <property name="textElideMode"> <enum>Qt::ElideNone</enum> |
