diff --git a/firmware/application/ui/ui_rssi.cpp b/firmware/application/ui/ui_rssi.cpp index fc22019e..6d8fd4ab 100644 --- a/firmware/application/ui/ui_rssi.cpp +++ b/firmware/application/ui/ui_rssi.cpp @@ -102,7 +102,7 @@ namespace ui { // show green peak value if( peak_enabled ) { - const Rect r5 { r.left(), r.bottom() + peak , r.width() , 1 }; + const Rect r5 { r.left() + peak - 1 , r.top() , 3 , r.height() }; painter.fill_rectangle( r5, Color::green() @@ -160,7 +160,7 @@ namespace ui { // show green peak value if enabled if( peak_enabled ) { - const Rect r5 { r.left(), r.bottom() - peak , r.width() , 1 }; + const Rect r5 { r.left(), r.bottom() - peak - 1 , r.width() , 3 }; painter.fill_rectangle( r5, Color::green()