Mercurial > hg > svgui
diff layer/LogColourScale.cpp @ 1471:f2525e6cbdf1 by-id
More layer updates
author | Chris Cannam |
---|---|
date | Mon, 01 Jul 2019 14:17:13 +0100 |
parents | a34a2a25907c |
children |
line wrap: on
line diff
--- a/layer/LogColourScale.cpp Fri Jun 28 17:37:22 2019 +0100 +++ b/layer/LogColourScale.cpp Mon Jul 01 14:17:13 2019 +0100 @@ -28,6 +28,11 @@ LogColourScale::getWidth(LayerGeometryProvider *, QPainter &paint) { + // Qt 5.13 deprecates QFontMetrics::width(), but its suggested + // replacement (horizontalAdvance) was only added in Qt 5.11 + // which is too new for us +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" + return paint.fontMetrics().width("-000.00") + 15; }