diff options
author | George Hazan <george.hazan@gmail.com> | 2024-10-16 20:51:30 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-10-16 20:51:30 +0300 |
commit | a0d7c372eddee44ece0f2693633ca6faabb6fd8c (patch) | |
tree | d97228140035e23ee9ad647a5bec320edd51710b | |
parent | 9ab1b5f20fe8a194375a1bc12a3d69dbb58b8332 (diff) |
fixes #4734 (PluginUpdater: пишет Skipped, даже если компонент скачался)
-rw-r--r-- | plugins/PluginUpdater/src/DlgListNew.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/PluginUpdater/src/DlgListNew.cpp b/plugins/PluginUpdater/src/DlgListNew.cpp index ec53c21ff0..2ac37ce98d 100644 --- a/plugins/PluginUpdater/src/DlgListNew.cpp +++ b/plugins/PluginUpdater/src/DlgListNew.cpp @@ -303,6 +303,9 @@ public: HNETLIBCONN nlc = nullptr;
int i = 0;
for (auto &p : *todo) {
+ if (p->IsFiltered(m_wszFilter))
+ continue;
+
m_list.EnsureVisible(i, FALSE);
if (p->bEnabled) {
// download update
|