diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2010-10-30 21:32:15 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2010-10-30 21:32:15 +0000 |
| commit | b5a73c78e61c18f4d08aec39a6edf5b19b1dbfd4 (patch) | |
| tree | a3e4da1f20c29e56a31ac7b3cfd411559ab03634 /test/label.cxx | |
| parent | 9b6f68dd7ce28ca42e31af0cf2a9c2535b34553f (diff) | |
Fixed label alignment (STR #2436)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7782 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/label.cxx')
| -rw-r--r-- | test/label.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/label.cxx b/test/label.cxx index 2d5fee5cb..39cd282c0 100644 --- a/test/label.cxx +++ b/test/label.cxx @@ -56,7 +56,7 @@ void button_cb(Fl_Widget *,void *) { if (clipb->value()) i |= FL_ALIGN_CLIP; if (wrapb->value()) i |= FL_ALIGN_WRAP; if (imageovertextb->value()) i |= FL_ALIGN_TEXT_OVER_IMAGE; - if (imagenexttotextb->value()) i |= FL_ALIGN_TEXT_NEXT_TO_IMAGE; + if (imagenexttotextb->value()) i |= FL_ALIGN_IMAGE_NEXT_TO_TEXT; if (imagebackdropb->value()) i |= FL_ALIGN_IMAGE_BACKDROP; text->align(i); window->redraw(); |
