mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
GP-3901 - Version Tracking - Fixed bug that prevented the matches table
from using saved filters at startup
This commit is contained in:
parent
29dfb904e2
commit
c98d240bac
1 changed files with 3 additions and 1 deletions
|
@ -146,6 +146,8 @@ public class VTMatchTableProvider extends ComponentProviderAdapter
|
||||||
updateFilterDisplay();
|
updateFilterDisplay();
|
||||||
|
|
||||||
setTableSelecionState(saveState);
|
setTableSelecionState(saveState);
|
||||||
|
|
||||||
|
refilter();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setTableSelecionState(SaveState saveState) {
|
private void setTableSelecionState(SaveState saveState) {
|
||||||
|
@ -232,7 +234,7 @@ public class VTMatchTableProvider extends ComponentProviderAdapter
|
||||||
if (matchesTable == null) {
|
if (matchesTable == null) {
|
||||||
return; // we've been disposed
|
return; // we've been disposed
|
||||||
}
|
}
|
||||||
|
|
||||||
int filteredCount = matchesTableModel.getRowCount();
|
int filteredCount = matchesTableModel.getRowCount();
|
||||||
int unfilteredCount = matchesTableModel.getUnfilteredRowCount();
|
int unfilteredCount = matchesTableModel.getUnfilteredRowCount();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue