forked from Wobbl/Wobuzz
14 lines
423 B
Python
14 lines
423 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
from PyQt6.QtWidgets import QWidget, QFormLayout, QCheckBox
|
||
|
|
||
|
|
||
|
class BehaviourSettings(QWidget):
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super().__init__(*args, **kwargs)
|
||
|
|
||
|
self.layout = QFormLayout(self)
|
||
|
self.setLayout(self.layout)
|
||
|
|
||
|
self.clear_track_cache = QCheckBox(self)
|
||
|
self.layout.addRow("Clear track cache immediately when finished", self.clear_track_cache)
|