Fixes error activating next/previous pane from Dock.
This commit is contained in:
Jason Rudolph
2017-05-17 15:28:24 -04:00
parent d599b52d36
commit ae9f24602d

View File

@@ -626,6 +626,16 @@ module.exports = class Dock {
return this.paneContainer.getActivePane()
}
// Extended: Make the next pane active.
activateNextPane () {
return this.paneContainer.activateNextPane()
}
// Extended: Make the previous pane active.
activatePreviousPane () {
return this.paneContainer.activatePreviousPane()
}
paneForURI (uri) {
return this.paneContainer.paneForURI(uri)
}