Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/10se1ucgo/DisableWinTracking.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/dwt.py
diff options
context:
space:
mode:
authorSam Boynton <samlingx@gmail.com>2016-07-21 11:00:01 +0300
committerGitHub <noreply@github.com>2016-07-21 11:00:01 +0300
commit443f7a26ac3e62b3727a42912bec7189e4c5f338 (patch)
tree8f1cdf32f8547b4da7af1bd9f05b6e2e18ee2f36 /dwt.py
parent2da24acc0ae8829c56d39a173102a64e8dfcba9f (diff)
Fix domain picker when selecting 'extra' setting
Diffstat (limited to 'dwt.py')
-rw-r--r--dwt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwt.py b/dwt.py
index 9a53872..a02b0b2 100644
--- a/dwt.py
+++ b/dwt.py
@@ -360,7 +360,7 @@ class MainPanel(wx.Panel):
extra_domain_picker = ItemsPicker(dialog, choices=[], selectedLabel="Extra domains to be blocked",
ipStyle=IP_SORT_SELECTED | IP_SORT_CHOICES | IP_REMOVE_FROM_CHOICES)
- if self.picked_normal:
+ if self.picked_extra:
extra_domain_picker.SetSelections(self.picked_extra)
extra_domain_picker.SetItems([domain for domain in extra_domains if domain not in self.picked_extra])
else: