Do not block signals when changing the rack.

This fixes a bug where a filter was still active after changing the
rack, causing the next search to return no result.
This commit is contained in:
Olivier Teulière 2016-02-03 00:00:20 +01:00
parent 7f60f532ad
commit 3ad45fdb91

View file

@ -436,12 +436,8 @@ void ArbitrationWidget::rackChanged()
clearResults();
// Clear the filters
lineEditFilterWord->blockSignals(true);
lineEditFilterWord->clear();
lineEditFilterWord->blockSignals(false);
lineEditFilterPoints->blockSignals(true);
lineEditFilterPoints->clear();
lineEditFilterPoints->blockSignals(false);
}