Skip to content

Commit

Permalink
fix: file/directory selectable theming #1928
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt committed Oct 31, 2022
1 parent 167848a commit 988c1fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mvItemRegistry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1055,15 +1055,15 @@ RenderItemRegistry(mvItemRegistry& registry)
for (auto& root : registry.textureRegistryRoots)
root->draw(nullptr, 0.0f, 0.0f);

for (auto& root : registry.filedialogRoots)
root->draw(nullptr, 0.0f, 0.0f);

for (auto& root : registry.themeRegistryRoots)
{
if(root->config.show)
((mvTheme*)root.get())->push_theme_components();
}

for (auto& root : registry.filedialogRoots)
root->draw(nullptr, 0.0f, 0.0f);

for (auto& root : registry.colormapRoots)
root->draw(nullptr, 0.0f, 0.0f);

Expand Down

0 comments on commit 988c1fe

Please sign in to comment.