Skip to content

Commit

Permalink
Fix change of all tabs in history view
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeAtHPI committed Apr 8, 2024
1 parent 2b0b537 commit 4d6b8a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/Sandblocks-Babylonian/SBHistoryView.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ SBHistoryView >> offerChangeTabMenu [
index := UIManager default chooseFrom: options.
index = 0 ifTrue: [^ self].

self scroller submorphs do: [:anEpoche | anEpoche lastSubmorph activeIndex: index].
self scroller submorphs do: [:anEpoche |
(anEpoche lastSubmorph isKindOf: SBTabView) ifTrue: [anEpoche lastSubmorph activeIndex: index]].
]

{ #category : #building }
Expand Down

0 comments on commit 4d6b8a2

Please sign in to comment.