Skip to content

Commit

Permalink
fix #2317
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@12592 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Dec 23, 2009
1 parent 7579596 commit e49d300
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/qgsmaptoolidentify.cpp
Expand Up @@ -38,6 +38,7 @@
#include <QMouseEvent>
#include <QCursor>
#include <QPixmap>
#include <QStatusBar>

QgsMapToolIdentify::QgsMapToolIdentify( QgsMapCanvas* canvas )
: QgsMapTool( canvas )
Expand Down Expand Up @@ -156,7 +157,7 @@ void QgsMapToolIdentify::canvasReleaseEvent( QMouseEvent * e )
{
results()->clear();
}
QMessageBox::information( 0, tr( "Identify results" ), tr( "No features at this position found." ) );
QgisApp::instance()->statusBar()->showMessage( tr( "No features at this position found." ) );
}
}

Expand Down

0 comments on commit e49d300

Please sign in to comment.