Skip to content

Commit 671fc8e

Browse files
committed
Raise access level of FormatBarItem color properties
1 parent a006f2f commit 671fc8e

1 file changed

Lines changed: 4 additions & 4 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
}

0 commit comments

Comments
 (0)