Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions app/CertPrep/TUI/Draw.hs
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,13 @@ drawExam core q drawAnswer statusButton =
statusBar =
padLeftRight 1 $
vLimitPercent 10 $
hBox
[ txt $ renderScoreStatus core,
padLeft (Pad 1) (txt $ renderTimeStatus core),
hCenter statusButton,
txt $ renderKeybindings core
]
hCenter statusButton
<=> hBox
[ txt $ renderScoreStatus core,
padLeft (Pad 1) (txt $ renderTimeStatus core),
hCenter (txt " "),
txt $ renderKeybindings core
]

renderQuestionTitle :: ExamCore -> Text
renderQuestionTitle core =
Expand Down
Loading