Commit ea78e694 by Daniel Dahan

Fixed issue where TabBar.lineColor was incorrectly being updated.

parent 64af2820
## 2.12.6
* Fixed issue where TabBar.lineColor was incorrectly being updated.
## 2.12.5 ## 2.12.5
* Updated to [Motion 1.2.4](https://github.com/CosmicMind/Motion/releases/tag/1.2.4). * Updated to [Motion 1.2.4](https://github.com/CosmicMind/Motion/releases/tag/1.2.4).
......
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'Material' s.name = 'Material'
s.version = '2.12.5' s.version = '2.12.6'
s.license = 'BSD-3-Clause' s.license = 'BSD-3-Clause'
s.summary = 'A UI/UX framework for creating beautiful applications.' s.summary = 'A UI/UX framework for creating beautiful applications.'
s.homepage = 'http://materialswift.com' s.homepage = 'http://materialswift.com'
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>2.12.5</string> <string>2.12.6</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
......
...@@ -264,7 +264,7 @@ open class TabBar: Bar { ...@@ -264,7 +264,7 @@ open class TabBar: Bar {
return lineColorForState[.selected]! return lineColorForState[.selected]!
} }
set(value) { set(value) {
lineColorForState[.selected] = value setLineColor(value, for: .selected)
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment