From 27919fec61099abae2eed6bea48409e400c7cb48 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 25 Nov 2018 19:08:05 -0500 Subject: [PATCH] items should not round their bounding box when requesting a redraw --- libs/canvas/item.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/canvas/item.cc b/libs/canvas/item.cc index 250d13a998..610475dffa 100644 --- a/libs/canvas/item.cc +++ b/libs/canvas/item.cc @@ -673,8 +673,9 @@ void Item::redraw () const { if (visible() && _bounding_box && _canvas) { - _canvas->request_redraw (item_to_window (_bounding_box)); + _canvas->request_redraw (item_to_window (_bounding_box, false)); } + } void