Skip to content

Commit

Permalink
Tweaked error message
Browse files Browse the repository at this point in the history
  • Loading branch information
TrickyLeifa committed Jul 7, 2024
1 parent 054a022 commit a61a815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lobby.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ void Lobby::list_servers()
treeItem->setBackground(0, Qt::darkRed);
treeItem->setBackground(1, Qt::darkRed);

QString tooltip = tr("This server cannot be connected to because there is no WebSocket entry point.");
QString tooltip = tr("Unable to connect to server. Server is missing WebSocket support.");
treeItem->setToolTip(0, tooltip);
treeItem->setToolTip(1, tooltip);
}
Expand Down Expand Up @@ -501,7 +501,7 @@ void Lobby::list_favorites()
treeItem->setBackground(0, Qt::darkRed);
treeItem->setBackground(1, Qt::darkRed);

QString tooltip = tr("This server cannot be connected to because there is no WebSocket entry point.");
QString tooltip = tr("Unable to connect to server. Server is missing WebSocket support.");
treeItem->setToolTip(0, tooltip);
treeItem->setToolTip(1, tooltip);
}
Expand Down

0 comments on commit a61a815

Please sign in to comment.