13
0

fix crash on OSX displaying MIDI sysex, or similar text.

This commit is contained in:
Robin Gareus 2015-06-13 22:04:31 +02:00
parent cc543280d9
commit c8e16998bf

View File

@ -119,7 +119,9 @@ Text::__redraw (Glib::RefPtr<Pango::Layout> layout) const
int width = 0;
int height = 0;
Glib::RefPtr<Pango::Layout> test_layout = foo.create_pango_layout ("H");
test_layout->set_font_description (*_font_description);
if (_font_description) {
test_layout->set_font_description (*_font_description);
}
test_layout->get_pixel_size (width, height);
_width_correction = width*1.5;