From 97986899617fc34faf950ba38df089ffbe13c858 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sat, 13 Mar 2021 17:28:57 -0500 Subject: [PATCH] Lengthen label arrow a tad --- piker/ui/_axes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/ui/_axes.py b/piker/ui/_axes.py index 4bb16656..c70578d5 100644 --- a/piker/ui/_axes.py +++ b/piker/ui/_axes.py @@ -454,7 +454,7 @@ class YAxisLabel(AxisLabel): path = QtGui.QPainterPath() h = self.rect.height() path.moveTo(0, 0) - path.lineTo(-x_offset - 2, h/2.) + path.lineTo(-x_offset - 4, h/2.) path.lineTo(0, h) path.closeSubpath() self.path = path