Skip to content

Commit 2c50567

Browse files
authored
Merge pull request #1207 from wordpress-mobile/feature/format-bar-customization
Allow customisation of format bar colors
2 parents 9610116 + 9e803ef commit 2c50567

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Aztec/Classes/GUI/FormatBar/FormatBarItem.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ open class FormatBarItem: UIButton {
1414

1515
/// Tint Color to be applied whenever the button is selected
1616
///
17-
var selectedTintColor: UIColor? {
17+
open var selectedTintColor: UIColor? {
1818
didSet {
1919
updateTintColor()
2020
}
@@ -23,7 +23,7 @@ open class FormatBarItem: UIButton {
2323

2424
/// Tint Color to be applied whenever the button is highlighted
2525
///
26-
var highlightedTintColor: UIColor? {
26+
open var highlightedTintColor: UIColor? {
2727
didSet {
2828
updateTintColor()
2929
}
@@ -32,7 +32,7 @@ open class FormatBarItem: UIButton {
3232

3333
/// Tint Color to be applied whenever the button is disabled
3434
///
35-
var disabledTintColor: UIColor? {
35+
open var disabledTintColor: UIColor? {
3636
didSet {
3737
updateTintColor()
3838
}
@@ -41,7 +41,7 @@ open class FormatBarItem: UIButton {
4141

4242
/// Tint Color to be applied to the "Normal" State
4343
///
44-
var normalTintColor: UIColor? {
44+
open var normalTintColor: UIColor? {
4545
didSet {
4646
updateTintColor()
4747
}

WordPress-Aztec-iOS.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'WordPress-Aztec-iOS'
11-
s.version = '1.8.0'
11+
s.version = '1.8.1'
1212
s.summary = 'The native HTML Editor.'
1313

1414
# This description is used to generate tags and improve search results.

WordPress-Editor-iOS.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'WordPress-Editor-iOS'
11-
s.version = '1.8.0'
11+
s.version = '1.8.1'
1212
s.summary = 'The WordPress HTML Editor.'
1313

1414
# This description is used to generate tags and improve search results.

0 commit comments

Comments
 (0)