Add input bar and implement File->Open dropdown option

This commit is contained in:
2025-06-07 15:15:08 +03:00
parent 3f924f7e38
commit bde4eeb070
4 changed files with 159 additions and 38 deletions
+6 -1
View File
@@ -48,6 +48,11 @@ func drawMessageBar(window *Window) {
char = int32(messageToPrint[x])
}
screen.SetContent(x, sizeY-1, char, nil, messageBarStyle)
if currentInputRequest == nil {
screen.SetContent(x, sizeY-1, char, nil, messageBarStyle)
} else {
screen.SetContent(x, sizeY-2, char, nil, messageBarStyle)
}
}
}