aboutsummaryrefslogtreecommitdiff
path: root/src/uicmd.cc
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-09-26 21:07:49 +0200
committerjcid <devnull@localhost>2008-09-26 21:07:49 +0200
commit60cc0a62eb80b8e642edda06b72c7d0896dac95b (patch)
tree3fa733ac19dd287c3c2cbfee7c17dfcfe33df301 /src/uicmd.cc
parentecb7f90eea54121a8fc99d9d3c2cd9579b22e32b (diff)
- Set the ::fltk::RAW_LABEL flag for widgets getting labels from html.
Diffstat (limited to 'src/uicmd.cc')
-rw-r--r--src/uicmd.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/uicmd.cc b/src/uicmd.cc
index ef1d19ff..83987725 100644
--- a/src/uicmd.cc
+++ b/src/uicmd.cc
@@ -128,6 +128,7 @@ BrowserWindow *a_UIcmd_browser_window_new(int ww, int wh, const void *vbw)
Window *win = new Window(ww, wh);
win->shortcut(0); // Ignore Escape
win->clear_double_buffer();
+ win->set_flag(RAW_LABEL);
CustTabGroup *DilloTabs = new CustTabGroup(0, 0, ww, wh);
DilloTabs->selection_color(156);
win->add(DilloTabs);