9 lines
207 B
Python
Executable File
9 lines
207 B
Python
Executable File
from PyQt6.QtWidgets import (
|
|
QPushButton,
|
|
)
|
|
|
|
class CustomButton(QPushButton):
|
|
def mousePressEvent(self, e):
|
|
self.parentWidget().mousePressEvent(e)
|
|
|
|
super().mousePressEvent(e) |