diff -r b421923c2577 -r 7642955690bc QTfrontend/ui/page/pageinfo.cpp --- a/QTfrontend/ui/page/pageinfo.cpp Fri May 06 19:23:26 2016 +0200 +++ b/QTfrontend/ui/page/pageinfo.cpp Fri May 06 20:12:27 2016 +0200 @@ -40,9 +40,10 @@ QLayout * PageInfo::footerLayoutDefinition() { QHBoxLayout * bottomLayout = new QHBoxLayout(); - BtnSnapshots = addButton(":/res/Star.png", bottomLayout, 0, true); + bottomLayout->setContentsMargins(0,0,0,0); + BtnSnapshots = addButton(":/res/Star.png", bottomLayout, 0, true, Qt::AlignBottom); BtnSnapshots->setWhatsThis(tr("Open the snapshot folder")); - bottomLayout->setAlignment(BtnSnapshots, Qt::AlignRight | Qt::AlignVCenter); + BtnSnapshots->setMinimumSize(50,50); return bottomLayout; }