- in Copper Thieving Plugin updated the GUI

This commit is contained in:
Marius Stanciu
2021-09-05 21:00:44 +03:00
committed by Marius Stanciu
parent 854548142e
commit 86286089bd
14 changed files with 145 additions and 207 deletions

View File

@@ -2267,10 +2267,14 @@ class FCPlainTextAreaExtended(QtWidgets.QPlainTextEdit):
class FCFrame(QtWidgets.QFrame):
# used when I want to apply stylesheets but not to children's of the same type
# a styled QFrame
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.setFrameStyle(QtWidgets.QFrame.Shape.StyledPanel | QtWidgets.QFrame.Shadow.Plain)
# self.setContentsMargins(0, 0, 0, 0)
self.setStyleSheet(".FCFrame{border: 1px solid gray; border-radius: 5px;}")
class FCComboBox(QtWidgets.QComboBox):