From ca0044b6635b89e42558ce67dc9aab045a26ab1a Mon Sep 17 00:00:00 2001 From: Luke Usher Date: Wed, 10 Apr 2024 10:39:40 +0100 Subject: [PATCH] desktop-ui: fix shaders not applying on startup --- desktop-ui/presentation/presentation.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop-ui/presentation/presentation.cpp b/desktop-ui/presentation/presentation.cpp index 62fd6cdfa..b9f0b753a 100644 --- a/desktop-ui/presentation/presentation.cpp +++ b/desktop-ui/presentation/presentation.cpp @@ -678,6 +678,7 @@ auto Presentation::loadShaders() -> void { if(settings.video.shader.imatch(item.attribute("file"))) { item.setChecked(); settings.video.shader = item.attribute("file"); + ruby::video.setShader({location, settings.video.shader}); } } } \ No newline at end of file