Skip to content

Commit bf4d7b0

Browse files
author
jef
committed
"fix" #3593
git-svn-id: http://svn.osgeo.org/qgis/trunk@15454 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 251dada commit bf4d7b0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/app/qgsmaptoolsplitfeatures.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ void QgsMapToolSplitFeatures::canvasReleaseEvent( QMouseEvent * e )
8282
{
8383
QMessageBox::warning( 0, tr( "No feature split done" ), tr( "If there are selected features, the split tool only applies to the selected ones. If you like to split all features under the split line, clear the selection" ) );
8484
}
85+
else if ( returnCode == 3 )
86+
{
87+
QMessageBox::warning( 0, tr( "No feature split done" ), tr( "Cut edges detected. Make sure the line splits features into multiple parts." ) );
88+
}
8589
else if ( returnCode != 0 )
8690
{
8791
//several intersections but only one split (most likely line)

0 commit comments

Comments
 (0)