From: Joel Holdsworth Date: Sun, 10 Nov 2013 21:43:53 +0000 (+0000) Subject: Adjusted annotation height X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=commitdiff_plain;h=28cd3330c4178d4086297e58e34bc55c7b5b3bf8 Adjusted annotation height --- diff --git a/pv/view/decode/annotation.cpp b/pv/view/decode/annotation.cpp index 797b428..7650b29 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 -