SetShowTitle shows or hides the title bar.
(v bool)
| 213 | |
| 214 | // SetShowTitle shows or hides the title bar. |
| 215 | func (m *Model) SetShowTitle(v bool) { |
| 216 | m.showTitle = v |
| 217 | m.updatePagination() |
| 218 | } |
| 219 | |
| 220 | // ShowTitle returns whether or not the title bar is set to be rendered. |
| 221 | func (m Model) ShowTitle() bool { |
no test coverage detected