diff options
author | corvid <corvid@lavabit.com> | 2011-09-15 23:20:34 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-09-15 23:20:34 +0000 |
commit | 7c6c617b0d71d06294842686ea4b3ef7abe7414f (patch) | |
tree | 0135e954c526351843cabe2cfd17034c096f7690 /dpi | |
parent | 2b381546239853088e5a79887e2048583e05f3ba (diff) |
let downloads dpi use the fltk scheme
In dillo, fltk putenv()s the scheme (FLTK_SCHEME), and
Fl::scheme(NULL) getenv)s it. Not that it makes much of
a difference to the downloads dpi...
Diffstat (limited to 'dpi')
-rw-r--r-- | dpi/downloads.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dpi/downloads.cc b/dpi/downloads.cc index 79df8e0c..9ed929ae 100644 --- a/dpi/downloads.cc +++ b/dpi/downloads.cc @@ -1157,6 +1157,8 @@ int main() // Disable '@' and '&' interpretation in normal labels. Fl::set_labeltype(FL_NORMAL_LABEL, custLabelDraw, custLabelMeasure); + Fl::scheme(NULL); + // Create the download window dl_win = new DLWin(ww, wh); |