move the feedback button in a nicer position
authorkoda
Tue, 17 Jan 2012 23:36:15 +0100
changeset 6582 d32b5fde9ea6
parent 6581 e510d1245bd7
child 6583 4218782d8ca0
move the feedback button in a nicer position
QTfrontend/ui/page/pagemain.cpp
--- a/QTfrontend/ui/page/pagemain.cpp	Tue Jan 17 09:20:16 2012 -0500
+++ b/QTfrontend/ui/page/pagemain.cpp	Tue Jan 17 23:36:15 2012 +0100
@@ -58,7 +58,11 @@
     BtnInfo->setWhatsThis(tr("Read about who is behind the Hedgewars Project"));
     pageLayout->setAlignment(BtnInfo, Qt::AlignHCenter);
 
-    BtnDataDownload = addButton(tr("Downloadable Content"), pageLayout, 4, 0, 1, 4, false);
+    BtnFeedback = addButton("Feedback", pageLayout, 4, 0, 1, 4, false);
+    BtnFeedback->setWhatsThis(tr("Leave a feeback here, reporting issues, suggesting features or just saying how you like Hedgewars"));
+    pageLayout->setAlignment(BtnFeedback, Qt::AlignHCenter);
+
+    BtnDataDownload = addButton(tr("Downloadable Content"), pageLayout, 5, 0, 1, 4, false);
     //BtnDataDownload->setToolTip(tr(Downloadable Content"));
     BtnDataDownload->setWhatsThis(tr("Access the user created content downloadable from our website"));
     pageLayout->setAlignment(BtnDataDownload, Qt::AlignHCenter);
@@ -78,9 +82,6 @@
     bottomLayout->setStretch(0,1);
 
     BtnSetup = addButton(":/res/Settings.png", bottomLayout, 1, true);
-    BtnFeedback = addButton("Feedback", bottomLayout, 0);
-    bottomLayout->setStretch(1,0);
-
     return bottomLayout;
 }