Skip to content

Commit ee0dda3

Browse files
author
timlinux
committedSep 13, 2010
Improved interaction with extents widget in statusbar so that the text contents of the widget can be copied and pasted
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14222 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5694,15 +5694,15 @@ void QgisApp::extentsViewToggled( bool theFlag )
56945694
//extents view mode!
56955695
mToggleExtentsViewButton->setIcon( getThemeIcon( "extents.png" ) );
56965696
mCoordsEdit->setToolTip( tr( "Map coordinates for the current view extents" ) );
5697-
mCoordsEdit->setEnabled( false );
5697+
mCoordsEdit->setReadOnly( true );
56985698
showExtents();
56995699
}
57005700
else
57015701
{
57025702
//mouse cursor pos view mode!
57035703
mToggleExtentsViewButton->setIcon( getThemeIcon( "tracking.png" ) );
57045704
mCoordsEdit->setToolTip( tr( "Map coordinates at mouse cursor position" ) );
5705-
mCoordsEdit->setEnabled( true );
5705+
mCoordsEdit->setReadOnly( false );
57065706
mCoordsLabel->setText( tr( "Coordinate:" ) );
57075707
}
57085708
}

0 commit comments

Comments
 (0)
Please sign in to comment.