From 93aaa020537b75edf278dcebda6d331cfe78bdde Mon Sep 17 00:00:00 2001 From: aa5sh <84428382+aa5sh@users.noreply.github.com> Date: Sat, 7 Dec 2024 22:38:29 -0600 Subject: [PATCH] AdjustBandMatchRegEx --- ui/DxWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/DxWidget.cpp b/ui/DxWidget.cpp index ca6b6e0e..6c7b074e 100644 --- a/ui/DxWidget.cpp +++ b/ui/DxWidget.cpp @@ -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++; }