diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-12-21 14:17:00 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-12-21 14:17:00 +0000 |
| commit | 128526fc282b69b2abcd0c24e6d042c9dea8c862 (patch) | |
| tree | 7cdfe7b5a70a0e434493d5a9669c1e1c777b9196 /src/fl_draw.cxx | |
| parent | e9bf41eb098a0f9aeea1dc6eca4e63e4642a682f (diff) | |
Fixed browser @ symbol prefix handling...
OS/2 fixes (makeinclude update and filename_isdir needed
#include <sys/types.h>)
MingW fix (makeinclude update)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1886 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_draw.cxx')
| -rw-r--r-- | src/fl_draw.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fl_draw.cxx b/src/fl_draw.cxx index 107ea08ee..a8f722bdc 100644 --- a/src/fl_draw.cxx +++ b/src/fl_draw.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_draw.cxx,v 1.6.2.4.2.7 2001/11/19 20:59:59 easysw Exp $" +// "$Id: fl_draw.cxx,v 1.6.2.4.2.8 2001/12/21 14:17:00 easysw Exp $" // // Label drawing code for the Fast Light Tool Kit (FLTK). // @@ -94,8 +94,8 @@ expand(const char* from, char* buf, double maxw, int& n, double &width, *o++ = c ^ 0x40; } else if (c == 0xA0) { // non-breaking space *o++ = ' '; - } else if (c == '@') { // Symbol??? - if (p[1] && p[1] != '@' && draw_symbols) break; + } else if (c == '@' && draw_symbols) { // Symbol??? + if (p[1] && p[1] != '@') break; *o++ = c; if (p[1]) p++; } else { @@ -327,5 +327,5 @@ void fl_measure(const char* str, int& w, int& h, int draw_symbols) { } // -// End of "$Id: fl_draw.cxx,v 1.6.2.4.2.7 2001/11/19 20:59:59 easysw Exp $". +// End of "$Id: fl_draw.cxx,v 1.6.2.4.2.8 2001/12/21 14:17:00 easysw Exp $". // |
