diff -r ce6ead3327b2 -r c73fd8cfa7c0 QTfrontend/ui/page/pagemain.cpp --- a/QTfrontend/ui/page/pagemain.cpp Mon Aug 27 17:40:16 2012 +0200 +++ b/QTfrontend/ui/page/pagemain.cpp Sun Sep 16 16:54:51 2012 +0200 @@ -85,9 +85,15 @@ bottomLayout->setStretch(0,1); btnBack->setWhatsThis(tr("Exit game")); - - BtnSetup = addButton(":/res/Settings.png", bottomLayout, 1, true); + +#ifdef VIDEOREC + BtnVideos = addButton(":/res/Videos.png", bottomLayout, 1, true); + BtnVideos->setWhatsThis(tr("Manage videos recorded from game")); +#endif + + BtnSetup = addButton(":/res/Settings.png", bottomLayout, 2, true); BtnSetup->setWhatsThis(tr("Edit game preferences")); + return bottomLayout; }