fbbe9263a5f2d7d7d09548caa03d0b3ae405b916,ilastik/applets/dataSelection/datasetDetailedInfoTableView.py,DatasetDetailedInfoTableView,handleCustomContextMenuRequested,#DatasetDetailedInfoTableView#Any#,57

Before Change


        col = self.columnAt( pos.x() )
        row = self.rowAt( pos.y() )
        
        if 0<= col < self.model().columnCount() and 0<= row < self.model().rowCount():
            menu = QMenu(parent=self)
            editSharedPropertiesAction = QAction( "Edit shared properties...", menu )
            editPropertiesAction = QAction( "Edit properties...", menu )

After Change


        row = self.rowAt( pos.y() )
        
        if 0 <= col < self.model().columnCount() and \
                0 <= row < self.model().rowCount() - 1: // last row is a button
            menu = QMenu(parent=self)
            editSharedPropertiesAction = QAction( "Edit shared properties...", menu )
            editPropertiesAction = QAction( "Edit properties...", menu )
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: ilastik/ilastik
Commit Name: fbbe9263a5f2d7d7d09548caa03d0b3ae405b916
Time: 2013-11-19
Author: burcin@erocal.org
File Name: ilastik/applets/dataSelection/datasetDetailedInfoTableView.py
Class Name: DatasetDetailedInfoTableView
Method Name: handleCustomContextMenuRequested


Project Name: ilastik/ilastik
Commit Name: fbbe9263a5f2d7d7d09548caa03d0b3ae405b916
Time: 2013-11-19
Author: burcin@erocal.org
File Name: ilastik/applets/dataSelection/dataLaneSummaryTableView.py
Class Name: DataLaneSummaryTableView
Method Name: handleCustomContextMenuRequested


Project Name: ilastik/ilastik
Commit Name: 219e7a2d020a5a21b74b0492ecb170c00bda1af8
Time: 2013-08-08
Author: bergs@janelia.hhmi.org
File Name: ilastik/applets/dataSelection/dataSelectionGui.py
Class Name: DataSelectionGui
Method Name: handleRemoveLaneButtonClicked