Skip to content

Commit c40423a

Browse files
fixed a small bug that made it so in some changes the listCounter would not update when changing tabs
1 parent 778486c commit c40423a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/NewTools-Pulse/StPulse.class.st

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,6 @@ StPulse >> processAddedCandidates [
873873
StPulse >> processFullAddedCandidates [
874874
"We candidatesAddedList removeAll to evade it updating the list again after the whole result is added to the list"
875875
| candidates |
876-
877876
candidatesFullSearchList ifNil: [ ^ self ].
878877
candidatesAddedList removeAll.
879878
candidates := candidatesFullSearchList.
@@ -1028,7 +1027,9 @@ StPulse >> updateResultListWith: aCollection [
10281027
self historyEntries ]
10291028
ifFalse: [ aCollection ].
10301029
emptyPresenter visible: list isEmpty.
1031-
listPresenter disableActivationDuring: [ listPresenter items: list ].
1030+
listPresenter disableActivationDuring: [
1031+
listPresenter items: list.
1032+
self calculateListCounterPresenter ].
10321033
list isNotEmpty
10331034
ifTrue: [ listPresenter selectFirst ] ] ]
10341035
]

0 commit comments

Comments
 (0)