Skip to content

Commit

Permalink
Fix selected tag not being shown in tag selection menu
Browse files Browse the repository at this point in the history
  • Loading branch information
parg committed Nov 22, 2023
1 parent 18b557a commit 35ff61a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion uis/src/com/biglybt/ui/swt/views/utils/TagUIUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -3589,7 +3589,8 @@ public Builder setMapTaggableCount(Map<Tag, Integer> mapTaggableCount,

auto_map.computeIfAbsent(ttTag, k -> new ArrayList<>()).add(t);

}else if ( buildTaggableCount && ttTag == tt ){
}
if ( buildTaggableCount && ttTag == tt ){

mapTaggableCount.compute(t, (t2, num) -> num == null ? 1 : num + 1);
}
Expand Down

0 comments on commit 35ff61a

Please sign in to comment.