#1114: Ensure minimum height of last block in Fl_Help_View
This commit is contained in:
Matthias Melcher 2025-07-16 12:47:40 +02:00
parent fafdd5df05
commit 7884d55c1a

View File

@ -1989,6 +1989,9 @@ void Fl_Help_View::format() {
block->end = ptr;
size_ = yy + hh;
}
// Make sure that the last block will have the correct height.
if (hh > block->h) block->h = hh;
// printf("margins.depth_=%d\n", margins.depth_);