Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 8548b3b

Browse files
authored
Merge pull request #435 from github/fixes/431-none-toggling
Fix [None] item toggling
2 parents 420d202 + 39bed82 commit 8548b3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Exports.Reactive/Collections/TrackingCollection.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public static ObservableCollection<T> CreateListenerCollection<T>(this ITracking
9696
{
9797
result.Insert(0, stickieItemOnTop);
9898
}
99-
else if (hasStickie)
99+
else if (!hasSelection && hasStickie)
100100
{
101101
result.Remove(stickieItemOnTop);
102102
}

0 commit comments

Comments
 (0)