equal
deleted
inserted
replaced
172 |
172 |
173 QLayout * PageRoomsList::footerLayoutDefinition() |
173 QLayout * PageRoomsList::footerLayoutDefinition() |
174 { |
174 { |
175 QHBoxLayout * bottomLayout = new QHBoxLayout(); |
175 QHBoxLayout * bottomLayout = new QHBoxLayout(); |
176 |
176 |
177 BtnAdmin = addButton(tr("Admin features"), bottomLayout, 0); |
177 BtnAdmin = addButton(tr("Admin features"), bottomLayout, 0, false, Qt::AlignBottom); |
178 BtnAdmin->setStyleSheet("padding: 4px auto;"); |
178 BtnAdmin->setMinimumSize(180, 50); |
179 BtnAdmin->setWhatsThis(tr("Open server administration page")); |
179 BtnAdmin->setWhatsThis(tr("Open server administration page")); |
180 |
180 |
181 return bottomLayout; |
181 return bottomLayout; |
182 } |
182 } |
183 |
183 |