- in Calculators Plugin added a new calculator to calculate the required chemical weights for tinning solutions

- in Calculators Plugin remade the GUI
- some minor GUI modifications for a series of App Plugins
This commit is contained in:
Marius Stanciu
2021-09-04 18:15:41 +03:00
committed by Marius
parent 36749712af
commit 01f3ac4e3a
14 changed files with 322 additions and 55 deletions

View File

@@ -2224,6 +2224,12 @@ class FCPlainTextAreaExtended(QtWidgets.QPlainTextEdit):
self.setTextCursor(cursor)
class FCFrame(QtWidgets.QFrame):
# used when I want to apply stylesheets but not to children's of the same type
def __init__(self, **kwargs):
super().__init__(**kwargs)
class FCComboBox(QtWidgets.QComboBox):
def __init__(self, parent=None, callback=None, policy=True):