From 769fc2a150f73f9fff48f72ce6f7d9a42ce0e366 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Nusser?= Date: Thu, 20 Apr 2017 20:30:03 +0200 Subject: Introduce gaps between buttons and content. This was necessary because of the new button texture. --- plugingui/drumkitframecontent.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'plugingui/drumkitframecontent.cc') diff --git a/plugingui/drumkitframecontent.cc b/plugingui/drumkitframecontent.cc index ea830fa..c16bb5a 100644 --- a/plugingui/drumkitframecontent.cc +++ b/plugingui/drumkitframecontent.cc @@ -39,6 +39,7 @@ BrowseFile::BrowseFile(Widget* parent) { layout.setResizeChildren(false); layout.setVAlignment(VAlignment::center); + layout.setSpacing(gap); layout.addItem(&lineedit); layout.addItem(&browse_button); @@ -50,8 +51,8 @@ void BrowseFile::resize(std::size_t width, std::size_t height) { Widget::resize(width, height); - lineedit_width = 0.72 * width; - button_width = width - lineedit_width; + lineedit_width = 0.72 * width - gap; + button_width = width - lineedit_width - gap; lineedit.resize(lineedit_width, 29); browse_button.resize(button_width, 30); -- cgit v1.2.3