QTfrontend/ui/page/pageroomslist.cpp
changeset 14836 b9437746bffb
parent 13325 4a713e29a4da
child 15878 fc3cb23fd26f
--- a/QTfrontend/ui/page/pageroomslist.cpp	Thu Apr 25 21:32:22 2019 +0300
+++ b/QTfrontend/ui/page/pageroomslist.cpp	Thu Apr 25 21:24:27 2019 +0200
@@ -504,6 +504,7 @@
         roomNameMsg.setIcon(QMessageBox::Warning);
         roomNameMsg.setWindowTitle(QMessageBox::tr("Room Name - Error"));
         roomNameMsg.setText(QMessageBox::tr("Please select room from the list"));
+        roomNameMsg.setTextFormat(Qt::PlainText);
         roomNameMsg.setWindowModality(Qt::WindowModal);
         roomNameMsg.exec();
         return;
@@ -530,6 +531,7 @@
     reallyJoinMsg.setIcon(QMessageBox::Question);
     reallyJoinMsg.setWindowTitle(QMessageBox::tr("Room Name - Are you sure?"));
     reallyJoinMsg.setText(QMessageBox::tr("The game you are trying to join has started.\nDo you still want to join the room?"));
+    reallyJoinMsg.setTextFormat(Qt::PlainText);
     reallyJoinMsg.setWindowModality(Qt::WindowModal);
     reallyJoinMsg.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel);