Skip to content

Commit

Permalink
Be a little more generous with the space allocated for coordinate and…
Browse files Browse the repository at this point in the history
… extent display so it doesnt get truncated.

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@15443 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Mar 12, 2011
1 parent 7a922ac commit 404ba05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -1190,7 +1190,7 @@ void QgisApp::createStatusBar()
mCoordsEdit = new QLineEdit( QString(), statusBar() );
mCoordsEdit->setFont( myFont );
mCoordsEdit->setMinimumWidth( 10 );
mCoordsEdit->setMaximumWidth( 200 );
mCoordsEdit->setMaximumWidth( 300 );
mCoordsEdit->setMaximumHeight( 20 );
mCoordsEdit->setContentsMargins( 0, 0, 0, 0 );
mCoordsEdit->setAlignment( Qt::AlignCenter );
Expand Down

0 comments on commit 404ba05

Please sign in to comment.