Skip to content

Commit

Permalink
fix: prevent ANOTHER Stub error at tachiyomi-inspector
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudemirovsky committed Feb 8, 2023
1 parent 2ab9467 commit 7d1e8d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ class NovelToManga {
var separateLines: Boolean = true
var fontSize: Float = 25F
set(value) {
textpaint.textSize = value
runCatching { textpaint.textSize = value }
field = value
}
var theme: Theme = DefaultThemes.DARK
set(value) {
textpaint.color = value.fontColor
runCatching { textpaint.color = value.fontColor }
field = value
}

Expand Down

0 comments on commit 7d1e8d6

Please sign in to comment.