forked from Wobbl/Wobuzz
Added "library_path" setting, added a gui for the settings, changed the window layout and did a bunch of other things.
This commit is contained in:
parent
259ec72442
commit
6498f43d5f
10 changed files with 124 additions and 37 deletions
15
wobuzz/ui/settings/file.py
Normal file
15
wobuzz/ui/settings/file.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from PyQt6.QtWidgets import QWidget, QLineEdit, QFormLayout
|
||||
|
||||
|
||||
class FileSettings(QWidget):
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
self.layout = QFormLayout(self)
|
||||
self.setLayout(self.layout)
|
||||
|
||||
self.library_path_input = QLineEdit(self)
|
||||
self.layout.addRow("Library Path:", self.library_path_input)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue