From: Joel Holdsworth Date: Sun, 10 Nov 2013 21:43:53 +0000 (+0000) Subject: Adjusted annotation height X-Git-Tag: pulseview-0.2.0~222 X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=28cd3330c4178d4086297e58e34bc55c7b5b3bf8;ds=sidebyside Adjusted annotation height --- diff --git a/pv/view/decode/annotation.cpp b/pv/view/decode/annotation.cpp index 797b428a..7650b29e 100644 --- a/pv/view/decode/annotation.cpp +++ b/pv/view/decode/annotation.cpp @@ -71,7 +71,7 @@ void Annotation::paint(QPainter &p, QColor text_color, int text_height, int left, int right, double samples_per_pixel, double pixels_offset, int y) { - const int h = (text_height * 3) / 2; + const int h = (text_height * 5) / 4; const double start = _start_sample / samples_per_pixel - pixels_offset; const double end = _end_sample / samples_per_pixel -