summaryrefslogtreecommitdiff
path: root/gui/cachewaysselector.cc
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-04-27 14:33:26 -0400
committerbd <bdunahu@operationnull.com>2025-04-27 14:33:26 -0400
commit8954fab5b430623e2052753fae20707b878b858c (patch)
treea0ed1d6b49e76c27f417c39e90b87e54c8cc1c5d /gui/cachewaysselector.cc
parentad0557059bb83da52e1a5bd7ea608a29a4ab6346 (diff)
Fix styles
Diffstat (limited to 'gui/cachewaysselector.cc')
-rw-r--r--gui/cachewaysselector.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/cachewaysselector.cc b/gui/cachewaysselector.cc
index f0314e5..14dae6f 100644
--- a/gui/cachewaysselector.cc
+++ b/gui/cachewaysselector.cc
@@ -32,7 +32,7 @@ CacheWaysSelector::CacheWaysSelector(QWidget *parent) : QWidget(parent)
v = new QVBoxLayout(this);
for (i = 1; i <= 6; ++i) {
- l = new QHBoxLayout(this);
+ l = new QHBoxLayout;
b = new QLabel(QString("L%1 2^").arg(i), this);
@@ -46,7 +46,6 @@ CacheWaysSelector::CacheWaysSelector(QWidget *parent) : QWidget(parent)
v->addLayout(l);
this->sbs.append(sb);
}
- v->addStretch();
}
QList<int> CacheWaysSelector::values() const