Skip to content

Commit 39ba64c

Browse files
authored
Attempt to avoid opening multiple identical paths
1 parent ec13f3c commit 39ba64c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ProperTree.command

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class ProperTree:
125125
if isinstance(plists, list) and len(plists):
126126
self.start_window = None
127127
# Iterate the passed plists and open them
128-
for p in plists:
128+
for p in set(plists):
129129
self.open_plist_with_path(None,p,None)
130130
else:
131131
# create a fresh plist to start

0 commit comments

Comments
 (0)