Skip to content

Commit

Permalink
Use a bold font for the stage duration guide text
Browse files Browse the repository at this point in the history
  • Loading branch information
LoadingByte committed Jun 29, 2021
1 parent 0b61f5e commit 8f7be0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ private fun drawPage(
fun drawFrames(frames: Int, y: Y) {
val str = formatTimecode(global.fps, global.timecodeFormat, frames)
val attrs = mapOf(
TextAttribute.FONT to Font(Font.MONOSPACED, Font.PLAIN, global.widthPx / 80),
TextAttribute.FONT to Font(Font.MONOSPACED, Font.BOLD, global.widthPx / 80),
TextAttribute.FOREGROUND to STAGE_GUIDE_COLOR
)
val attrCharIter = AttributedString(str, attrs).iterator
Expand Down

0 comments on commit 8f7be0e

Please sign in to comment.