diff --git a/libs/canvas/text.cc b/libs/canvas/text.cc index acc25b9ffc..438413080a 100644 --- a/libs/canvas/text.cc +++ b/libs/canvas/text.cc @@ -159,7 +159,7 @@ Text::compute_bounding_box () const Glib::RefPtr context = Glib::wrap (gdk_pango_context_get()); // context now owns C object and will free it redraw (context); } - _bounding_box = Rect (0, 0, _image->get_width(), _image->get_height()); + _bounding_box = Rect (0, 0, min (_clamped_width, (double) _image->get_width()), _image->get_height()); _bounding_box_dirty = false; } }