highlightedStyle -> overlayStyle
authorKevin Sawicki <kevinsawicki@gmail.com>
Wed, 15 Mar 2017 16:47:07 +0000 (09:47 -0700)
committerKevin Sawicki <kevinsawicki@gmail.com>
Wed, 15 Mar 2017 16:47:07 +0000 (09:47 -0700)
lib/browser/api/touch-bar.js

index 4ddbde5..74951ed 100644 (file)
@@ -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)