From ae9f24602d80cb15fe0edc15c1aae37d44ee786c Mon Sep 17 00:00:00 2001 From: Jason Rudolph Date: Wed, 17 May 2017 15:28:24 -0400 Subject: [PATCH] :bug: Fix #14442 Fixes error activating next/previous pane from Dock. --- src/dock.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/dock.js b/src/dock.js index 0e6d60e4e..d531e8627 100644 --- a/src/dock.js +++ b/src/dock.js @@ -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) }