Skip to content

Commit

Permalink
AdjustBandMatchRegEx
Browse files Browse the repository at this point in the history
  • Loading branch information
aa5sh committed Dec 8, 2024
1 parent 94e55cd commit 93aaa02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/DxWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ QString DxWidget::bandFilterRegExp()
QString band_name = bands->data(bands->index(band_index,0)).toString();
if ( settings.value("dxc/filter_band_" + band_name,true).toBool() )
{
regexp.append("|" + band_name);
regexp.append("|^" + band_name);
}
band_index++;
}
Expand Down

0 comments on commit 93aaa02

Please sign in to comment.