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

@ -53,6 +53,11 @@ class AddressList(MyTreeWidget):
def create_toolbar_buttons(self):
return QLabel(_("Filter:")), self.change_button, self.used_button
def on_hide_toolbar(self):
self.show_change = 0
self.show_used = 0
self.update()
def refresh_headers(self):
headers = [_('Type'), _('Address'), _('Label'), _('Balance')]
fx = self.parent.fx

View File

@ -114,6 +114,11 @@ class HistoryList(MyTreeWidget, AcceptFileDragDrop):
self.period_combo.activated.connect(self.on_combo)
return self.period_combo, self.start_button, self.end_button
def on_hide_toolbar(self):
self.start_timestamp = None
self.end_timestamp = None
self.update()
def select_start_date(self):
self.start_timestamp = self.select_date(self.start_button)
self.update()

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):