summaryrefslogtreecommitdiff
path: root/libs/widgets
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-08-27 00:00:29 +0200
committerRobin Gareus <robin@gareus.org>2019-08-27 00:00:29 +0200
commitb01f6ead8b71999a6fe9065e4cc3b6a654c9f536 (patch)
tree174459e6a16ffa01a06fac2db7accaf4c476b6bc /libs/widgets
parentb4addaaa0a4cbacb10cc80aded64cdc126545f8c (diff)
Reduce girth of "plus" icon
Diffstat (limited to 'libs/widgets')
-rw-r--r--libs/widgets/ardour_icon.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/widgets/ardour_icon.cc b/libs/widgets/ardour_icon.cc
index 32ad1d1b8d..d410b37010 100644
--- a/libs/widgets/ardour_icon.cc
+++ b/libs/widgets/ardour_icon.cc
@@ -1010,7 +1010,7 @@ static void icon_plus_sign (cairo_t *cr, const int width, const int height, cons
{
const double xc = rint (width * .5);
const double yc = rint (height * .5);
- const int wh = std::min (width, height) * .1;
+ const double wh = ceil (std::min (width, height) * .077) / 2.0;
const int ln = std::min (width, height) * .33;
cairo_rectangle (cr,