File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
python/plugins/processing/modeler Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 53
53
54
54
class ModelerDialog (BASE , WIDGET ):
55
55
56
- USE_CATEGORIES = '/Processing/UseSimplifiedInterface'
57
56
CANVAS_SIZE = 4000
58
57
59
58
def __init__ (self , alg = None ):
@@ -519,13 +518,9 @@ def fillAlgorithmTreeUsingProviders(self):
519
518
class TreeAlgorithmItem (QTreeWidgetItem ):
520
519
521
520
def __init__ (self , alg ):
522
- settings = QSettings ()
523
- useCategories = settings .value (ModelerDialog .USE_CATEGORIES , type = bool )
524
521
QTreeWidgetItem .__init__ (self )
525
522
self .alg = alg
526
523
icon = alg .getIcon ()
527
- if useCategories :
528
- icon = GeoAlgorithm .getDefaultIcon ()
529
524
name = AlgorithmClassification .getDisplayName (alg )
530
525
self .setIcon (0 , icon )
531
526
self .setToolTip (0 , name )
You can’t perform that action at this time.
0 commit comments