added menus

master
Milan Suman 2022-03-19 18:38:45 +05:30
parent 74b554015c
commit 82271182ba
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,5 @@
from PySide6 import QtWidgets
import gui_helper
import util
app = QtWidgets.QApplication([])
@ -43,7 +44,8 @@ class Window(QtWidgets.QMainWindow):
elif inner == None:
menu_item.addSeparator()
else:
menu_item.addAction(inner)
item = menu_item.addAction(inner)
item.triggered.connect(gui_helper.data())
#TODO: This needs to run in a thread but Qt really doesn't want it to. There are two ways around this: