]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/dropdown.cpp
Return a reference from Style::get_font
[libs/gltk.git] / source / dropdown.cpp
index d1a7bd7e1433490e364a8d7cf2ec356c809ce0a7..cab6d918e536210190a256b67b7965c0851c2f1b 100644 (file)
@@ -31,9 +31,9 @@ void Dropdown::autosize()
        if(const Part *text_part = style->get_part("text"))
        {
                const Sides &margin = text_part->get_margin();
-               const GL::Font *font = style->get_font();
+               const GL::Font &font = style->get_font();
                float font_size = style->get_font_size();
-               unsigned line_height = static_cast<unsigned>((font->get_ascent()-font->get_descent())*font_size);
+               unsigned line_height = static_cast<unsigned>((font.get_ascent()-font.get_descent())*font_size);
                geom.h = max(geom.h, line_height+margin.top+margin.bottom);
        }
 }