d33e62fd9aaf19b3dc92c883831f0bbc4c674ed7,ilastik/applets/splitBodyPostprocessing/splitBodyPostprocessingGui.py,SplitBodyPostprocessingGui,setupLayers,#SplitBodyPostprocessingGui#,103

Before Change


            rawLayer.name = "raw"
            rawLayer.visible = True
            rawLayer.opacity = 1.0
            rawLayer.shortcutRegistration = ( "Postprocessing",
                                              "Raw Data to Top",
                                              QShortcut( QKeySequence("g"),
                                                         self.viewerControlWidget(),
                                                         partial(self._toggleRawDataPosition, rawLayer) ),
                                             rawLayer )
            layers.append(rawLayer)

        return layers

After Change


            rawLayer.name = "raw"
            rawLayer.visible = True
            rawLayer.opacity = 1.0
            rawLayer.shortcutRegistration = ( "g", ShortcutManager2.ActionInfo(
                                                       "Postprocessing",
                                                       "Raw Data to Top",
                                                       "Raw Data to Top",
                                                       partial(self._toggleRawDataPosition, rawLayer),
                                                       self.viewerControlWidget(),
                                                       rawLayer ) )
            layers.append(rawLayer)

        return layers
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 9

Instances


Project Name: ilastik/ilastik
Commit Name: d33e62fd9aaf19b3dc92c883831f0bbc4c674ed7
Time: 2014-03-04
Author: bergs@janelia.hhmi.org
File Name: ilastik/applets/splitBodyPostprocessing/splitBodyPostprocessingGui.py
Class Name: SplitBodyPostprocessingGui
Method Name: setupLayers


Project Name: ilastik/ilastik
Commit Name: 050b110146f3ce8cb3d3a7cb7ef34363fede1edd
Time: 2014-03-04
Author: bergs@janelia.hhmi.org
File Name: ilastik/applets/pixelClassification/pixelClassificationGui.py
Class Name: PixelClassificationGui
Method Name: setupLayers


Project Name: ilastik/ilastik
Commit Name: d33e62fd9aaf19b3dc92c883831f0bbc4c674ed7
Time: 2014-03-04
Author: bergs@janelia.hhmi.org
File Name: ilastik/applets/splitBodyCarving/splitBodyCarvingGui.py
Class Name: SplitBodyCarvingGui
Method Name: setupLayers