Skip to content

Commit

Permalink
call refilter after updating filter data
Browse files Browse the repository at this point in the history
  • Loading branch information
shakiba committed Aug 26, 2023
1 parent f190017 commit ae24904
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/dynamics/Fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,7 @@ export class Fixture {

setFilterGroupIndex(groupIndex: number): void {
this.m_filterGroupIndex = groupIndex;
this.refilter();
}

getFilterCategoryBits(): number {
Expand All @@ -437,6 +438,7 @@ export class Fixture {

setFilterCategoryBits(categoryBits: number): void {
this.m_filterCategoryBits = categoryBits;
this.refilter();
}

getFilterMaskBits(): number {
Expand All @@ -445,6 +447,7 @@ export class Fixture {

setFilterMaskBits(maskBits: number): void {
this.m_filterMaskBits = maskBits;
this.refilter();
}

/**
Expand Down

0 comments on commit ae24904

Please sign in to comment.