From 9afe719827ca46d25833b842d9605b6e4db5c7f3 Mon Sep 17 00:00:00 2001 From: nick_m Date: Fri, 16 Dec 2016 02:01:50 +1100 Subject: amend incomplete change in previous commit. --- libs/canvas/flag.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libs/canvas/flag.cc b/libs/canvas/flag.cc index 9fa59dbbd5..a6da8b727e 100644 --- a/libs/canvas/flag.cc +++ b/libs/canvas/flag.cc @@ -72,13 +72,14 @@ Flag::set_font_description (Pango::FontDescription font_description) void Flag::set_text (string const & text) { - if (text.empty ()) { - _text->set (" "); - } else if (text == _text->text()) { + if (text == _text->text()) { return; + } else if (text.empty ()) { + _text->set (" "); } else { _text->set (text); } + boost::optional bbox = _text->bounding_box (); assert (bbox); -- cgit v1.2.3