16 lines
392 B
Python
16 lines
392 B
Python
|
#!/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)
|
||
|
|