File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ class WarpContainersPane : public QWidget
149149 {
150150 // Retrieve all available containers
151151 const auto all = Warp::Container::All ();
152- m_containers = all; // copy vector<Ref<Container>>
152+ m_containers = all;
153153
154154 for (const auto & c : m_containers)
155155 {
@@ -159,10 +159,6 @@ class WarpContainersPane : public QWidget
159159 auto * widget = new WarpContainerWidget (c, m_stack);
160160 m_stack->addWidget (widget);
161161 }
162-
163- // Visual style: behave like a vertical tab bar
164- // m_list->setFrameShape(QFrame::NoFrame);
165- // m_list->setSpacing(0);
166162 }
167163
168164 static int itemHeightPx ()
Original file line number Diff line number Diff line change @@ -194,6 +194,7 @@ void WarpSidebarWidget::Update()
194194{
195195 m_currentFunctionWidget->UpdateMatches ();
196196 m_matchedWidget->Update ();
197+ m_containerWidget->refresh ();
197198 // TODO: Obviously this probably should not be called here.
198199 setMatcherActionIcon (false );
199200}
You can’t perform that action at this time.
0 commit comments