summaryrefslogtreecommitdiff
path: root/plugins/warp/ui/containers.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/warp/ui/containers.h')
-rw-r--r--plugins/warp/ui/containers.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/warp/ui/containers.h b/plugins/warp/ui/containers.h
index d5e82242..b95c32db 100644
--- a/plugins/warp/ui/containers.h
+++ b/plugins/warp/ui/containers.h
@@ -149,7 +149,7 @@ private:
{
// Retrieve all available containers
const auto all = Warp::Container::All();
- m_containers = all; // copy vector<Ref<Container>>
+ m_containers = all;
for (const auto& c : m_containers)
{
@@ -159,10 +159,6 @@ private:
auto* widget = new WarpContainerWidget(c, m_stack);
m_stack->addWidget(widget);
}
-
- // Visual style: behave like a vertical tab bar
- // m_list->setFrameShape(QFrame::NoFrame);
- // m_list->setSpacing(0);
}
static int itemHeightPx()