QTfrontend/ui/page/pagenetgame.cpp
changeset 11811 f9a4f4d11c3a
parent 11809 f412d539284e
child 11812 92b3b0fcb41f
--- a/QTfrontend/ui/page/pagenetgame.cpp	Wed May 04 22:56:22 2016 +0200
+++ b/QTfrontend/ui/page/pagenetgame.cpp	Fri May 06 15:45:48 2016 +0200
@@ -126,6 +126,7 @@
 
     BtnGo = new QPushButton(this);
     BtnGo->setIconSize(QSize(25, 34));
+    BtnGo->setWhatsThis(tr("Turn on the lightbulb to show the other players when you're ready to fight."));
     setReadyStatus(false);
     BtnGo->setMinimumWidth(50);
     BtnGo->setMinimumHeight(50);
@@ -219,12 +220,10 @@
     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."));
     }
 }