Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed scale widget height
  • Loading branch information
elpaso authored and m-kuhn committed Jul 29, 2015
1 parent 832c320 commit 4660182
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgisapp.cpp
Expand Up @@ -1790,14 +1790,14 @@ void QgisApp::createStatusBar()
mToggleExtentsViewButton = new QToolButton( statusBar() );
mToggleExtentsViewButton->setObjectName( "mToggleExtentsViewButton" );
mToggleExtentsViewButton->setMaximumWidth( 20 );
mToggleExtentsViewButton->setMaximumHeight( 20 );
//mToggleExtentsViewButton->setMaximumHeight( 20 );
mToggleExtentsViewButton->setIcon( QgsApplication::getThemeIcon( "tracking.png" ) );
mToggleExtentsViewButton->setToolTip( tr( "Toggle extents and mouse position display" ) );
mToggleExtentsViewButton->setCheckable( true );
connect( mToggleExtentsViewButton, SIGNAL( toggled( bool ) ), this, SLOT( extentsViewToggled( bool ) ) );
statusBar()->addPermanentWidget( mToggleExtentsViewButton, 0 );

// add a label to show current scale
// add a label to show current position
mCoordsLabel = new QLabel( QString(), statusBar() );
mCoordsLabel->setObjectName( "mCoordsLabel" );
mCoordsLabel->setFont( myFont );
Expand Down
1 change: 1 addition & 0 deletions src/gui/qgsscalecombobox.cpp
Expand Up @@ -112,6 +112,7 @@ void QgsScaleComboBox::showPopup()
blockSignals( true );
view()->setCurrentIndex( model()->index( idx, 0 ) );
blockSignals( false );
view()->setMinimumWidth(view()->sizeHintForColumn(0));
}

//! Function to read the selected scale as text
Expand Down

0 comments on commit 4660182

Please sign in to comment.