summaryrefslogtreecommitdiff
path: root/src/lua/lua_theme.cpp
diff options
context:
space:
mode:
authorailurux <ailuruxx@gmail.com>2024-03-27 16:11:36 +1100
committerailurux <ailuruxx@gmail.com>2024-03-27 16:11:36 +1100
commitbf58cb7acf402420158f3ac2530f62ddc3057914 (patch)
tree13709d2ff27b567b1b155b2fe1243c65279111b0 /src/lua/lua_theme.cpp
parent489fbceb2b5a623ea502ab647f023d2e2e566121 (diff)
downloadtangara-fw-bf58cb7acf402420158f3ac2530f62ddc3057914.tar.gz
Minor fixes
Diffstat (limited to 'src/lua/lua_theme.cpp')
-rw-r--r--src/lua/lua_theme.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_theme.cpp b/src/lua/lua_theme.cpp
index 2fcd71e5..32d6f660 100644
--- a/src/lua/lua_theme.cpp
+++ b/src/lua/lua_theme.cpp
@@ -59,7 +59,7 @@ static auto set_theme(lua_State* L) -> int {
// Style
lv_style_t* style = luavgl_to_style(L, -1);
if (style == NULL) {
- ESP_LOGI("DANIEL", "Style was null or malformed??");
+ ESP_LOGI(kTag, "Style was null or malformed");
return 0;
} else {
ui::themes::Theme::instance()->AddStyle(class_name, selector, style);