diff --git a/libs/canvas/flag.cc b/libs/canvas/flag.cc index 756b54545f..495df34353 100644 --- a/libs/canvas/flag.cc +++ b/libs/canvas/flag.cc @@ -55,9 +55,9 @@ Flag::set_text (string const & text) boost::optional bbox = _text->bounding_box (); assert (bbox); - Duple flag_size (bbox.get().width() + 10, bbox.get().height() + 3); + Duple flag_size (bbox.get().width() + 10, bbox.get().height() + 4); - _text->set_position (flag_size / 2); + _text->set_position (Duple (5, 2)); _rectangle->set (Rect (0, 0, flag_size.x, flag_size.y)); }