diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2011-03-09 18:12:25 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2011-03-09 18:12:25 -0300 |
commit | 59225d03dbbcaae94b23cd15894dd1163b382dcd (patch) | |
tree | 303e964e96031d7dcef672ce4c57026b6f8636de | |
parent | 8cd66889c2538703c266ba8fca5af745a45bbda3 (diff) | |
parent | 2423ac309789f13e104fc629c5a60c3c4947dfc4 (diff) |
merge
-rw-r--r-- | src/dillo.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dillo.cc b/src/dillo.cc index 3811d1d2..c7a0cbc3 100644 --- a/src/dillo.cc +++ b/src/dillo.cc @@ -174,6 +174,8 @@ static void custLabelDraw(const Fl_Label* o, int X, int Y, int W, int H, { const int interpret_symbols = 0; + fl_draw_shortcut = 0; + fl_font(o->font, o->size); fl_color((Fl_Color)o->color); fl_draw(o->value, X, Y, W, H, align, o->image, interpret_symbols); @@ -183,6 +185,8 @@ static void custLabelMeasure(const Fl_Label* o, int& W, int& H) { const int interpret_symbols = 0; + fl_draw_shortcut = 0; + fl_font(o->font, o->size); fl_measure(o->value, W, H, interpret_symbols); } |