From 5c304c002bc434eebb8037799bec05f39b4bac7c Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 10 Sep 2021 21:16:08 +0200 Subject: [PATCH] fix: Constants store page not getting cleared on reload Fixes #290 --- source/views/view_store.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/views/view_store.cpp b/source/views/view_store.cpp index 07d05b936..4d135420a 100644 --- a/source/views/view_store.cpp +++ b/source/views/view_store.cpp @@ -118,6 +118,7 @@ namespace hex { this->m_patterns.clear(); this->m_includes.clear(); this->m_magics.clear(); + this->m_constants.clear(); this->m_apiRequest = this->m_net.getString(ImHexApiURL + "/store"s); }