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/drumkitframecontent.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugingui/drumkitframecontent.cc') diff --git a/plugingui/drumkitframecontent.cc b/plugingui/drumkitframecontent.cc index f90f346..d58f7b4 100644 --- a/plugingui/drumkitframecontent.cc +++ b/plugingui/drumkitframecontent.cc @@ -51,8 +51,8 @@ void BrowseFile::resize(std::size_t width, std::size_t height) { Widget::resize(width, height); - lineedit_width = 0.77 * width - gap; - button_width = width - lineedit_width - gap; + lineedit_width = std::max((int)(0.77 * (int)width - gap), 0); + button_width = std::max((int)width - lineedit_width - gap, 0); lineedit.resize(lineedit_width, 29); browse_button.resize(button_width, 30); -- cgit v1.2.3