Comment out autoloading

Keeping to aid fast development. Feel free to uncomment
topo-mov
LEdoian 1 year ago
parent 3987ffa44a
commit fb2148e362

@ -100,10 +100,10 @@ class MainWindow(QtWidgets.QMainWindow):
topodiff_act.triggered.connect(self.topoDiffMode) topodiff_act.triggered.connect(self.topoDiffMode)
mode_menu.addAction(topodiff_act) mode_menu.addAction(topodiff_act)
# Hack! ## Hack for fast testing. Feel free to uncomment and use.
autoload_act = QtGui.QAction("&Load automatically", self) #autoload_act = QtGui.QAction("&Load automatically", self)
autoload_act.triggered.connect(self.autoLoad) #autoload_act.triggered.connect(self.autoLoad)
self.menubar.addAction(autoload_act) #self.menubar.addAction(autoload_act)
topo_menu = self.menubar.addMenu('&Topology') topo_menu = self.menubar.addMenu('&Topology')
ref_menu = topo_menu.addMenu("&Reference") ref_menu = topo_menu.addMenu("&Reference")
@ -151,7 +151,7 @@ class MainWindow(QtWidgets.QMainWindow):
self.edgeWeightMode() self.edgeWeightMode()
#self.autoLoad() #self.autoLoad()
#Hack #Hack, feel free to tweak
@Slot() @Slot()
def autoLoad(self): def autoLoad(self):
print('Auto-loading…') print('Auto-loading…')

Loading…
Cancel
Save