Merge pull request #2808 from Umcaruje/fixbbwidth

Change the minimum width of the B&B editor
This commit is contained in:
Tres Finocchiaro
2016-07-05 11:39:18 -04:00
committed by GitHub

View File

@@ -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 );
}