summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Music.cpp
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-07-17 20:47:39 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-07-17 21:05:38 (GMT)
commite86917821f28d62dc32550705086e9b34e399025 (patch)
treef7436886d71d60636753e3a0ce387a8dd540ca04 /src/displayapp/screens/Music.cpp
parent05d2b5ce09834ba6634208929a356aa83327dcf1 (diff)
Tweak gamma on ST7789 and match UI colors
This change will increase the color accuracy of the PineTime and make UI development with the simulator easier. Cherry-picked and adapted by Michele Bini
Diffstat (limited to 'src/displayapp/screens/Music.cpp')
-rw-r--r--src/displayapp/screens/Music.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/Music.cpp b/src/displayapp/screens/Music.cpp
index dd4609c..6c91c1e 100644
--- a/src/displayapp/screens/Music.cpp
+++ b/src/displayapp/screens/Music.cpp
@@ -53,7 +53,7 @@ Music::Music(Pinetime::Applications::DisplayApp* app, Pinetime::Controllers::Mus
lv_style_init(&btn_style);
lv_style_set_radius(&btn_style, LV_STATE_DEFAULT, 20);
lv_style_set_bg_color(&btn_style, LV_STATE_DEFAULT, LV_COLOR_AQUA);
- lv_style_set_bg_opa(&btn_style, LV_STATE_DEFAULT, LV_OPA_20);
+ lv_style_set_bg_opa(&btn_style, LV_STATE_DEFAULT, LV_OPA_40);
btnVolDown = lv_btn_create(lv_scr_act(), nullptr);
btnVolDown->user_data = this;