We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39cc8da commit dc9d1cfCopy full SHA for dc9d1cf
plugins/warp/ui/plugin.cpp
@@ -174,7 +174,12 @@ WarpSidebarWidget::WarpSidebarWidget(BinaryViewRef data) : SidebarWidget("WARP")
174
175
m_fetcher = WarpFetcher::Global();
176
m_callbackId = m_fetcher->AddCompletionCallback([this]() {
177
- ExecuteOnMainThread([this]() { Update(); });
+ ExecuteOnMainThread([this]() {
178
+ // Instead of doing a full update after fetching, we only want to make sure the current function has
179
+ // up-to-date matches, since the other two tabs (all matches, container list) do not get populated with
180
+ // additional information or manage their own updates (e.g. container source list).
181
+ m_currentFunctionWidget->UpdateMatches();
182
+ });
183
return KeepCallback;
184
});
185
0 commit comments