From f13c4d1264279c6677ad4aa21dfaa1a3d664a3e3 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 3 Sep 2022 16:21:02 -0600 Subject: [PATCH] canvas: NOOP - meter, whitespace adjustment --- libs/canvas/meter.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/canvas/meter.cc b/libs/canvas/meter.cc index c532d68609..195d2422be 100644 --- a/libs/canvas/meter.cc +++ b/libs/canvas/meter.cc @@ -760,7 +760,7 @@ Meter::queue_vertical_redraw (float old_level) /* rect.y (new y origin) is smaller or equal to pixrect.y (old * y origin) because the top of the meter is higher (X/Cairo: - * coordinates grow down). + * coordinates grow down). * * Leave rect.y alone, and recompute the height to be just the * difference between the new bottom and the top of the previous @@ -769,7 +769,7 @@ Meter::queue_vertical_redraw (float old_level) * The old pattern area extended DOWN from pixrect.y to * pixrect.y + pixrect.height. * - * The new pattern area extends DOWN from rect.y to + * The new pattern area extends DOWN from rect.y to * rect.y + rect.height * * The area needing to be drawn is the difference between the @@ -833,7 +833,7 @@ Meter::queue_vertical_redraw (float old_level) Cairo::RectangleInt iri = region->get_extents(); Rect ir (iri.x, iri.y, iri.x + iri.width, iri.y + iri.height); _canvas->request_redraw (item_to_window (ir)); - } + } } }