- renamed classes to have shorter names and grouped
This commit is contained in:
19
AppGUI/preferences/OptionsGroupUI.py
Normal file
19
AppGUI/preferences/OptionsGroupUI.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from PyQt5 import QtWidgets
|
||||
|
||||
|
||||
class OptionsGroupUI(QtWidgets.QGroupBox):
|
||||
app = None
|
||||
|
||||
def __init__(self, title, parent=None):
|
||||
# QtGui.QGroupBox.__init__(self, title, parent=parent)
|
||||
super(OptionsGroupUI, self).__init__()
|
||||
self.setStyleSheet("""
|
||||
QGroupBox
|
||||
{
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
}
|
||||
""")
|
||||
|
||||
self.layout = QtWidgets.QVBoxLayout()
|
||||
self.setLayout(self.layout)
|
||||
Reference in New Issue
Block a user