mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
ui/about: Remove additional spacers
These just break the flow, with no visual improvement.
This commit is contained in:
parent
2b0f4bc9bd
commit
a32c2b1104
1 changed files with 4 additions and 20 deletions
|
@ -138,12 +138,13 @@ streamfx::ui::about::about() : QDialog(reinterpret_cast<QWidget*>(obs_frontend_g
|
|||
int row = 0;
|
||||
int column = 0;
|
||||
int thanks = 0;
|
||||
int spacer = 0;
|
||||
|
||||
// Fix columns being stretched for no reason.
|
||||
layout->setColumnStretch(0, 1);
|
||||
layout->setColumnStretch(1, 1);
|
||||
|
||||
D_LOG_DEBUG("Building grid of Thank You entries...", "");
|
||||
|
||||
// Randomize the list.
|
||||
std::shuffle(entries.begin(), entries.end(), generator);
|
||||
for (auto entry : entries) {
|
||||
|
@ -152,13 +153,14 @@ streamfx::ui::about::about() : QDialog(reinterpret_cast<QWidget*>(obs_frontend_g
|
|||
layout->addWidget(v, row, column);
|
||||
layout->setRowStretch(row, 0);
|
||||
|
||||
D_LOG_DEBUG(" Added '%s' => '%s'.", entry.name.c_str(), entry.link.c_str());
|
||||
|
||||
// Proceed down the grid.
|
||||
column += 1;
|
||||
if (column >= 2) {
|
||||
column = 0;
|
||||
row += 1;
|
||||
thanks += 1;
|
||||
spacer += 1;
|
||||
|
||||
if (thanks % 9 == 8) { // "Thank you" every 8 rows.
|
||||
auto image = new QLabel(content);
|
||||
|
@ -171,24 +173,6 @@ streamfx::ui::about::about() : QDialog(reinterpret_cast<QWidget*>(obs_frontend_g
|
|||
|
||||
thanks = 0;
|
||||
row += 1;
|
||||
} else if (spacer % 6 == 5) { // Spacer every 5 rows.
|
||||
auto separator = new QFrame(content);
|
||||
separator->setFrameShape(QFrame::HLine);
|
||||
separator->setFrameShadow(QFrame::Sunken);
|
||||
separator->setMaximumHeight(1);
|
||||
separator->setMinimumHeight(1);
|
||||
separator->setFixedHeight(1);
|
||||
separator->setLineWidth(1);
|
||||
{
|
||||
auto sp = separator->sizePolicy();
|
||||
sp.setVerticalPolicy(QSizePolicy::Fixed);
|
||||
separator->setSizePolicy(sp);
|
||||
}
|
||||
layout->addWidget(separator, row, 0, 1, 2);
|
||||
layout->setRowStretch(row, 0);
|
||||
|
||||
spacer = 0;
|
||||
row += 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue