QTfrontend/ui/page/pagenetgame.cpp
changeset 11809 f412d539284e
parent 11757 6874644a2d00
child 11811 f9a4f4d11c3a
--- a/QTfrontend/ui/page/pagenetgame.cpp	Wed May 04 18:14:25 2016 +0200
+++ b/QTfrontend/ui/page/pagenetgame.cpp	Wed May 04 19:42:20 2016 +0200
@@ -125,8 +125,8 @@
     // Ready button
 
     BtnGo = new QPushButton(this);
-    BtnGo->setIcon(QIcon(":/res/lightbulb_off.png"));
     BtnGo->setIconSize(QSize(25, 34));
+    setReadyStatus(false);
     BtnGo->setMinimumWidth(50);
     BtnGo->setMinimumHeight(50);
 
@@ -217,9 +217,15 @@
 void PageNetGame::setReadyStatus(bool isReady)
 {
     if(isReady)
+    {
         BtnGo->setIcon(QIcon(":/res/lightbulb_on.png"));
+        BtnGo->setWhatsThis(tr("You are ready for action! Click on the lightbulb if you are not ready."));
+    }
     else
+    {
         BtnGo->setIcon(QIcon(":/res/lightbulb_off.png"));
+        BtnGo->setWhatsThis(tr("You're not ready for action yet. Turn on the lightbulb when you're ready so other players will know this."));
+    }
 }
 
 void PageNetGame::onRoomNameEdited()