Skip to content

Commit

Permalink
makes controller rack fixed in width (#3240)
Browse files Browse the repository at this point in the history
  • Loading branch information
BaraMGB authored Jan 23, 2017
1 parent 604e5ae commit 349f27f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/widgets/ControllerRackView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ ControllerRackView::ControllerRackView( ) :

subWin->setAttribute( Qt::WA_DeleteOnClose, false );
subWin->move( 680, 310 );
subWin->resize(400, 200);
subWin->resize( 350, 200 );
subWin->setFixedWidth( 350 );
}


Expand Down

0 comments on commit 349f27f

Please sign in to comment.