Skip to content

Commit

Permalink
[UI] Fix column span in Resources manager
Browse files Browse the repository at this point in the history
Temporary fix, since this will be integrated into Settings class
  • Loading branch information
hexabits committed Oct 7, 2014
1 parent 68bff08 commit 8fa5dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fsengine/fsmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ FSSelector::FSSelector( FSManager * m )

QGridLayout * grid = new QGridLayout( this );
grid->addWidget( chkAuto, 0, 0, 1, 2 );
grid->addWidget( view, 1, 0, 1, 2 );
grid->addWidget( view, 1, 0, 1, 3 );
grid->addWidget( btAdd, 2, 0, 1, 1 );
grid->addWidget( btDel, 2, 1, 1, 1 );
grid->addWidget( btDelAll, 2, 2, 1, 1 );
Expand Down

0 comments on commit 8fa5dcd

Please sign in to comment.