Skip to content

Commit

Permalink
Merge pull request #2808 from Umcaruje/fixbbwidth
Browse files Browse the repository at this point in the history
Change the minimum width of the B&B editor
  • Loading branch information
tresf authored Jul 5, 2016
2 parents 3baedf3 + 14b7d83 commit d84263e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/editors/BBEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
}


Expand Down

0 comments on commit d84263e

Please sign in to comment.