forked from Wobbl/Wobuzz
Removed text from playlist tabs and added QLineEdit to them to have an input for renaming playlists.
This commit is contained in:
parent
120d04359e
commit
9d844ae2dd
2 changed files with 36 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from PyQt6.QtGui import QPalette
|
||||
from PyQt6.QtWidgets import QWidget, QLineEdit, QFormLayout
|
||||
|
||||
|
||||
|
@ -11,5 +12,7 @@ class FileSettings(QWidget):
|
|||
self.setLayout(self.layout)
|
||||
|
||||
self.library_path_input = QLineEdit(self)
|
||||
self.library_path_input.setStyleSheet("QLineEdit { background: transparent; }")
|
||||
|
||||
self.layout.addRow("Library Path:", self.library_path_input)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue