From ff83cfac10939ceba524c93d4e36f634f4bec805 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 19 May 2017 19:09:17 +0200 Subject: Make sure we don't resize to negative values. --- plugingui/frame.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugingui/frame.cc') diff --git a/plugingui/frame.cc b/plugingui/frame.cc index efe0281..81cc3c2 100644 --- a/plugingui/frame.cc +++ b/plugingui/frame.cc @@ -110,8 +110,8 @@ void FrameWidget::sizeChanged(int width, int height) { content_start_x = content_margin; content_start_y = bar_height + content_margin; - content_width = width - 2 * content_margin; - content_height = height - (bar_height + 2 * content_margin); + content_width = std::max((int)width - 2 * content_margin, 0); + content_height = std::max((int)height - (bar_height + 2 * content_margin), 0); content->move(content_start_x, content_start_y); content->resize(content_width, content_height); -- cgit v1.2.3