diff --git a/lib/browser/api/touch-bar.js b/lib/browser/api/touch-bar.js index 4ddbde5b1592..74951edbac6d 100644 --- a/lib/browser/api/touch-bar.js +++ b/lib/browser/api/touch-bar.js @@ -235,12 +235,12 @@ TouchBar.TouchBarScrubber = class TouchBarScrubber extends TouchBarItem { constructor (config) { super() if (config == null) config = {} - const {items, selectedStyle, highlightedStyle, showArrowButtons, continuous, mode} = config + const {items, selectedStyle, overlayStyle, showArrowButtons, continuous, mode} = config let {select, highlight} = config this.type = 'scrubber' this._addLiveProperty('items', items) this._addLiveProperty('selectedStyle', selectedStyle || null) - this._addLiveProperty('overlayStyle', highlightedStyle || null) + this._addLiveProperty('overlayStyle', overlayStyle || null) this._addLiveProperty('showArrowButtons', showArrowButtons || false) this._addLiveProperty('mode', mode || 'free') this._addLiveProperty('continuous', continuous || true)