Skip to content

Commit

Permalink
Appearance changes
Browse files Browse the repository at this point in the history
  • Loading branch information
protocentralashwin committed Nov 14, 2024
1 parent ff56af0 commit 015fd46
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_MAJOR = 0
VERSION_MINOR = 9
PATCHLEVEL = 0
PATCHLEVEL = 7
VERSION_TWEAK = 0
EXTRAVERSION =
EXTRAVERSION = pre
4 changes: 2 additions & 2 deletions app/src/ui/screens/scr_ecg.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ void draw_scr_ecg(enum scroll_dir m_scroll_dir)
draw_header(scr_ecg, true);

chart_ecg = lv_chart_create(scr_ecg);
lv_obj_set_pos(chart_ecg, 5, 35);
lv_obj_set_pos(chart_ecg, 10, 35);

lv_obj_set_size(chart_ecg, 475, 185);
lv_obj_set_size(chart_ecg, 460, 185);
lv_obj_set_style_bg_color(chart_ecg, lv_color_black(), LV_STATE_DEFAULT);

lv_obj_set_style_size(chart_ecg, 0, LV_PART_INDICATOR);
Expand Down
4 changes: 2 additions & 2 deletions app/src/ui/screens/scr_ppg.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ void draw_scr_ppg(enum scroll_dir m_scroll_dir)
draw_header(scr_ppg, true);

chart_ppg = lv_chart_create(scr_ppg);
lv_obj_set_pos(chart_ppg, 5, 35);
lv_obj_set_pos(chart_ppg, 10, 35);

lv_obj_set_size(chart_ppg, 475, 185);
lv_obj_set_size(chart_ppg, 460, 185);
lv_obj_set_style_bg_color(chart_ppg, lv_color_black(), LV_STATE_DEFAULT);

lv_obj_set_style_size(chart_ppg, 0, LV_PART_INDICATOR);
Expand Down
2 changes: 1 addition & 1 deletion app/src/ui/screens/scr_resp.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void draw_scr_resp(enum scroll_dir m_scroll_dir)
chart_resp = lv_chart_create(scr_resp);
lv_obj_set_pos(chart_resp, 10, 35);

lv_obj_set_size(chart_resp, 450, 185);
lv_obj_set_size(chart_resp, 460, 185);
lv_obj_set_style_bg_color(chart_resp, lv_color_black(), LV_STATE_DEFAULT);

lv_obj_set_style_size(chart_resp, 0, LV_PART_INDICATOR);
Expand Down

0 comments on commit 015fd46

Please sign in to comment.