We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98e8da7 commit 3bb1525Copy full SHA for 3bb1525
uis/src/com/biglybt/ui/swt/components/BubbleTextBox.java
@@ -631,12 +631,12 @@ public void removeBubbleTextBoxChangeListenener(
631
public void validateFilterRegex() {
632
Color old_bg = (Color) textWidget.getData("TVSWTC:filter.bg");
633
if (old_bg == null) {
634
- old_bg = textWidget.getBackground();
+ old_bg = Utils.getSkinnedBackground( textWidget );
635
textWidget.setData("TVSWTC:filter.bg", old_bg);
636
}
637
Color old_fg = (Color) textWidget.getData("TVSWTC:filter.fg");
638
if (old_fg == null) {
639
- old_fg = textWidget.getForeground();
+ old_fg = Utils.getSkinnedForeground( textWidget );
640
textWidget.setData("TVSWTC:filter.fg", old_fg);
641
642
boolean old = regexIsError;
0 commit comments