Added Shift-Click functionality to list buttons and numbered buttons

This commit is contained in:
=
2024-08-15 20:42:05 -06:00
parent 4af65368b6
commit 971a5c507a
2 changed files with 66 additions and 35 deletions

9
components/customButton.py Executable file
View File

@@ -0,0 +1,9 @@
from PyQt6.QtWidgets import (
QPushButton,
)
class CustomButton(QPushButton):
def mousePressEvent(self, e):
self.parentWidget().mousePressEvent(e)
super().mousePressEvent(e)