From 2ae5518c8102d1daea746bb5362546cd9f763e32 Mon Sep 17 00:00:00 2001 From: gymnast86 Date: Fri, 5 Jun 2026 21:23:10 -0700 Subject: [PATCH] SetPsuedoClass -> SetClass --- src/dusk/ui/rando_config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dusk/ui/rando_config.cpp b/src/dusk/ui/rando_config.cpp index 89ebcfecc6..0ce2676cb2 100644 --- a/src/dusk/ui/rando_config.cpp +++ b/src/dusk/ui/rando_config.cpp @@ -1073,7 +1073,7 @@ RandomizerWindow::RandomizerWindow() { clickToRemoveSection->SetProperty("font-size", "15dp"); auto& innerRightPane = rightPane.add_child(Pane::Type::Controlled); - innerRightPane.root()->SetPseudoClass("excluded-locations-pane", true); + innerRightPane.root()->SetClass("excluded-locations-pane", true); // Setup left pane leftPane.root()->SetProperty("overflow", "hidden"); @@ -1099,7 +1099,7 @@ RandomizerWindow::RandomizerWindow() { filter.root()->SetProperty("height", "40dp"); auto& innerLeftPane = leftPane.add_child(Pane::Type::Controlled, false); - innerLeftPane.root()->SetPseudoClass("excluded-locations-pane", true); + innerLeftPane.root()->SetClass("excluded-locations-pane", true); // Attach listeners for left pane filter.listen(Rml::EventId::Change, [this, &innerLeftPane, &innerRightPane](Rml::Event& event) {