diff --git a/dlib/gui_widgets/widgets.cpp b/dlib/gui_widgets/widgets.cpp index 1b5c523d1..f124316ca 100644 --- a/dlib/gui_widgets/widgets.cpp +++ b/dlib/gui_widgets/widgets.cpp @@ -6312,6 +6312,9 @@ namespace dlib std::map::const_iterator itr; for (itr = overlay_rects[i].parts.begin(); itr != overlay_rects[i].parts.end(); ++itr) { + if (itr->second == OBJECT_PART_NOT_PRESENT) + continue; + rectangle temp = centered_rect(get_rect_on_screen(centered_rect(itr->second,1,1)), part_width, part_width); if (rect_is_selected && selected_rect == i && @@ -6504,6 +6507,9 @@ namespace dlib std::map::const_iterator itr; for (itr = overlay_rects[i].parts.begin(); itr != overlay_rects[i].parts.end(); ++itr) { + if (itr->second == OBJECT_PART_NOT_PRESENT) + continue; + rectangle temp = centered_rect(get_rect_on_screen(centered_rect(itr->second,1,1)), part_width, part_width); point c = center(temp); @@ -6647,6 +6653,9 @@ namespace dlib std::map::const_iterator itr; for (itr = overlay_rects[i].parts.begin(); itr != overlay_rects[i].parts.end(); ++itr) { + if (itr->second == OBJECT_PART_NOT_PRESENT) + continue; + rectangle temp = centered_rect(get_rect_on_screen(centered_rect(itr->second,1,1)), part_width, part_width); point c = center(temp);