diff options
author | brenda-br | 2023-02-28 13:32:16 +0530 |
---|---|---|
committer | brenda-br | 2023-02-28 13:32:16 +0530 |
commit | 7cc33e72b9cd08f41eb8d13a29f013238ca85577 (patch) | |
tree | fdb412bfa959beac34c3b529319f50187c3ab8e6 /src/main/python/utils/toolbar.py | |
parent | 01131bf76cbe184f2ddc10a5e6ce668a2f5de6d2 (diff) | |
download | Chemical-PFD-7cc33e72b9cd08f41eb8d13a29f013238ca85577.tar.gz Chemical-PFD-7cc33e72b9cd08f41eb8d13a29f013238ca85577.tar.bz2 Chemical-PFD-7cc33e72b9cd08f41eb8d13a29f013238ca85577.zip |
Toolbar Color Change and Close Button Added for Project Title Bar
Diffstat (limited to 'src/main/python/utils/toolbar.py')
-rw-r--r-- | src/main/python/utils/toolbar.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/python/utils/toolbar.py b/src/main/python/utils/toolbar.py index dbfff22..69618f0 100644 --- a/src/main/python/utils/toolbar.py +++ b/src/main/python/utils/toolbar.py @@ -31,6 +31,7 @@ class toolbar(QDockWidget): self.setWindowFlags(Qt.FramelessWindowHint) self.searchBox = QLineEdit(self.widget) #search box to search through componenets + self.searchBox.setStyleSheet("QLineEdit {background-color: white;color: black}") #set color of searchBox #connect signal to filter slot, add searchbar to toolbar self.searchBox.textChanged.connect(self.searchQuery) |