From 14b7d83fbd660eddd7bb2d21b3884d1c4816ec49 Mon Sep 17 00:00:00 2001 From: Umcaruje Date: Wed, 1 Jun 2016 00:41:06 +0200 Subject: [PATCH] Change the minimum width of the B&B editor --- src/gui/editors/BBEditor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/editors/BBEditor.cpp b/src/gui/editors/BBEditor.cpp index 569759562f4..31cb97bacae 100644 --- a/src/gui/editors/BBEditor.cpp +++ b/src/gui/editors/BBEditor.cpp @@ -62,12 +62,12 @@ BBEditor::BBEditor( BBTrackContainer* tc ) : "compacttrackbuttons" ).toInt() ) { setMinimumWidth( TRACK_OP_WIDTH_COMPACT + DEFAULT_SETTINGS_WIDGET_WIDTH_COMPACT - + 2 * TCO_BORDER_WIDTH + 264 ); + + 2 * TCO_BORDER_WIDTH + 384 ); } else { setMinimumWidth( TRACK_OP_WIDTH + DEFAULT_SETTINGS_WIDGET_WIDTH - + 2 * TCO_BORDER_WIDTH + 264 ); + + 2 * TCO_BORDER_WIDTH + 384 ); }