Skip to content

Commit

Permalink
[BACKPORT] Union and Symetrical difference works only on whole layer
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Nov 12, 2011
1 parent 7cd2850 commit 33b7e31
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/plugins/fTools/tools/doGeoprocessing.py
Expand Up @@ -175,12 +175,16 @@ def manageGui( self ):
elif self.myFunction == 7: # Symetrical difference
self.label_2.setText( self.tr( "Difference layer" ) )
self.setWindowTitle( self.tr( "Symetrical difference" ) )
self.useSelectedA.hide()
self.useSelectedB.hide()
elif self.myFunction == 8: # Clip
self.label_2.setText( self.tr( "Clip layer" ) )
self.setWindowTitle( self.tr( "Clip" ) )
else: # Union
self.label_2.setText( self.tr( "Union layer" ) )
self.setWindowTitle( self.tr( "Union" ) )
self.useSelectedA.hide()
self.useSelectedB.hide()
self.resize(381, 100)
self.populateLayers()

Expand Down

0 comments on commit 33b7e31

Please sign in to comment.