diff options
author | Josu Goñi <josu_z@hotmail.com> | 2019-06-05 18:43:59 +0200 |
---|---|---|
committer | Josu Goñi <josu_z@hotmail.com> | 2019-07-02 07:26:40 +0200 |
commit | db26e8e22822c65a3817b16805f5ba9ad2235f93 (patch) | |
tree | 43db60170d347d170bef72f4d05de6fe15cdc75f /src | |
parent | 03858b23fe1d17e681eb18d24602b276020295a0 (diff) |
Add antialiasing to traffic graph widget
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/trafficgraphwidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/trafficgraphwidget.cpp b/src/qt/trafficgraphwidget.cpp index 1588be8da3..006007be63 100644 --- a/src/qt/trafficgraphwidget.cpp +++ b/src/qt/trafficgraphwidget.cpp @@ -104,6 +104,7 @@ void TrafficGraphWidget::paintEvent(QPaintEvent *) } } + painter.setRenderHint(QPainter::Antialiasing); if(!vSamplesIn.empty()) { QPainterPath p; paintPath(p, vSamplesIn); |