1
0

disable list filtering when toolbar is closed

This commit is contained in:
ThomasV
2018-02-28 09:56:34 +01:00
parent 4236adc552
commit 2345d5f473
3 changed files with 12 additions and 0 deletions

View File

@@ -539,6 +539,8 @@ class MyTreeWidget(QTreeWidget):
def show_toolbar(self, x):
for b in self.toolbar_buttons:
b.setVisible(x)
if not x:
self.on_hide_toolbar()
class ButtonsWidget(QWidget):