Hello all I have this code here
layout = QVBoxLayout()
central_widget = QWidget()
self.setCentralWidget(central_widget)
central_widget.setLayout(layout)
header_label = QLabel("Key | Message | Enabled? | Enter?")
header_label.setFont(QFont("Tahoma", 10, QFont.Bold))
layout.addWidget(header_label)
Problem is it completely breaks on other scales on windows. It's fine on 100% and completely not fine on any else. Any way to make this scale to the windows scale? Everything else does but this :(