diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_File_Chooser2.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Fl_File_Chooser2.cxx b/src/Fl_File_Chooser2.cxx index eddbbb5d2..bddae82f2 100644 --- a/src/Fl_File_Chooser2.cxx +++ b/src/Fl_File_Chooser2.cxx @@ -1423,6 +1423,15 @@ Fl_File_Chooser::update_preview() previewBox->labelsize(size); previewBox->labelfont(FL_COURIER); } + } else if (image && ( (image->w() <= 0) || + (image->h() <= 0) || + (image->d() <= 0) )) { + // Image has errors? Show big 'X' + previewBox->label("X"); + previewBox->align(FL_ALIGN_CLIP); + previewBox->labelsize(70); + previewBox->labelfont(FL_HELVETICA); + previewBox->redraw(); } else if (image) { pbw = previewBox->w() - 20; pbh = previewBox->h() - 20; |
