We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72a38f6 commit da194b7Copy full SHA for da194b7
src/app/qgisapp.cpp
@@ -5694,15 +5694,15 @@ void QgisApp::extentsViewToggled( bool theFlag )
5694
//extents view mode!
5695
mToggleExtentsViewButton->setIcon( getThemeIcon( "extents.png" ) );
5696
mCoordsEdit->setToolTip( tr( "Map coordinates for the current view extents" ) );
5697
- mCoordsEdit->setEnabled( false );
+ mCoordsEdit->setReadOnly( true );
5698
showExtents();
5699
}
5700
else
5701
{
5702
//mouse cursor pos view mode!
5703
mToggleExtentsViewButton->setIcon( getThemeIcon( "tracking.png" ) );
5704
mCoordsEdit->setToolTip( tr( "Map coordinates at mouse cursor position" ) );
5705
- mCoordsEdit->setEnabled( true );
+ mCoordsEdit->setReadOnly( false );
5706
mCoordsLabel->setText( tr( "Coordinate:" ) );
5707
5708
0 commit comments