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
diff options
context:
space:
mode:
author10se1ucgo <10se1ucgo@users.noreply.github.com>2016-07-21 19:24:00 +0300
committerGitHub <noreply@github.com>2016-07-21 19:24:00 +0300
commitee77f8d6f53a7c1a52d8816bd8c6cd68c3d7374a (patch)
tree8f1cdf32f8547b4da7af1bd9f05b6e2e18ee2f36
parent2da24acc0ae8829c56d39a173102a64e8dfcba9f (diff)
parent443f7a26ac3e62b3727a42912bec7189e4c5f338 (diff)
Merge pull request #195 from samling/patch-1
Fix domain picker when selecting 'extra' setting
-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: