removed the redundant (or whatever) launch button

This commit is contained in:
N0\A
2025-10-24 11:53:11 +02:00
parent a04b1c098f
commit 077e1f7366

View File

@@ -34,13 +34,10 @@ class AppLauncherDialog(QtWidgets.QDialog):
# Buttons
button_layout = QtWidgets.QHBoxLayout()
launch_button = QtWidgets.QPushButton("Launch")
launch_button.clicked.connect(lambda: self.launch_app(self.list_widget.currentItem()))
close_button = QtWidgets.QPushButton("Close")
close_button.clicked.connect(self.close)
button_layout.addStretch()
button_layout.addWidget(launch_button)
button_layout.addWidget(close_button)
layout.addLayout(button_layout)