mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Fix dock hiding on drag
This commit is contained in:
@@ -55,7 +55,9 @@ module.exports = class Dock {
|
||||
this.show()
|
||||
this.didActivate(this)
|
||||
}),
|
||||
this.paneContainer.onDidDestroyPaneItem(this.handleDidRemovePaneItem.bind(this)),
|
||||
this.paneContainer.observePanes(pane => {
|
||||
pane.onDidRemoveItem(this.handleDidRemovePaneItem.bind(this))
|
||||
}),
|
||||
this.paneContainer.onDidChangeActivePane((item) => params.didChangeActivePane(this, item)),
|
||||
this.paneContainer.onDidChangeActivePaneItem((item) => params.didChangeActivePaneItem(this, item)),
|
||||
this.paneContainer.onDidDestroyPaneItem((item) => params.didDestroyPaneItem(item))
|
||||
|
||||
Reference in New Issue
Block a user