rivo / tview

Terminal UI library with rich, interactive widgets — written in Golang
MIT License
10.8k stars 562 forks source link

Fix app crash when clicking spaces after slide page items in presentation demo. #976

Closed Zhwt closed 4 months ago

Zhwt commented 5 months ago

The SetHighlightedFunc function is missing boundary check, so when clicking outside of available item list, it will panic with out of bound error.

https://github.com/rivo/tview/blob/c766eefb3803dc4d478ee18f4c9176918e1c09ac/demos/presentation/main.go#L57-L59

Fixed by checking slice length first.