aboutsummaryrefslogtreecommitdiff
path: root/src/Theme.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-09-12 00:51:20 +0200
committerdec05eba <dec05eba@protonmail.com>2024-09-12 00:51:20 +0200
commitce78dd5b363ec1feb2e937601daf09977bf44648 (patch)
treef9b72fc924bd5f96442766c4347c1d2cab3b4fcd /src/Theme.cpp
parentbeb4441be84b92cc748c92dc6839279303cd27a4 (diff)
Add dropdown icons and description text
Diffstat (limited to 'src/Theme.cpp')
-rw-r--r--src/Theme.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Theme.cpp b/src/Theme.cpp
index e08cfb8..037f159 100644
--- a/src/Theme.cpp
+++ b/src/Theme.cpp
@@ -88,6 +88,12 @@ namespace gsr {
if(!theme->checkbox_background_texture.load_from_file((resources_path + "images/checkbox_background.png").c_str()))
goto error;
+ if(!theme->play_texture.load_from_file((resources_path + "images/play.png").c_str()))
+ goto error;
+
+ if(!theme->stop_texture.load_from_file((resources_path + "images/stop.png").c_str()))
+ goto error;
+
return true;
error: