Skip to content

Commit

Permalink
Merge pull request #491 from pharo-ide/dev
Browse files Browse the repository at this point in the history
New release: fix for  broken tabs selection
  • Loading branch information
dionisiydk authored May 6, 2019
2 parents 381ac87 + 91fea40 commit 28f3b6c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Calypso-Browser/ClyTabManager.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ ClyTabManager >> addTool: aBrowserTool [
tab when: #tabDeleted send: #tabDeleted: to: self.
tab when: #tabSelected send: #tabSelected: to: self.
tab label on: #doubleClick send: #toggleFullWindowTabs to: browser.
"Following code is required to fix the problem
when doubleClick handler of tab label disables event processing by its parent, TabMorph"
tab label on: #mouseDown send: #mouseDown: to: tab.
tab label on: #mouseUp send: #mouseUp: to: tab.
tabMorph addTab: tab
]

Expand Down

0 comments on commit 28f3b6c

Please sign in to comment.