Skip to content

Commit

Permalink
revert last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DubbleClick committed Dec 13, 2024
1 parent 1cbadfb commit 9668bb1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions GWToolboxdll/Windows/SettingsWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,7 @@ void SettingsWindow::Draw(IDirect3DDevice9*)

auto modules = GWToolbox::GetModules();
std::ranges::sort(modules, sort);
for (const auto m : modules | std::views::filter([](const ToolboxModule* module) {
return !module->IsUIElement();
})) {
for (const auto m : modules) {
if (m->HasSettings()) {
DrawSettingsSection(m->SettingsName());
}
Expand Down

0 comments on commit 9668bb1

Please sign in to comment.