SetShowStatusBar shows or hides the view that displays metadata about the list, such as item counts.
(v bool)
| 244 | // SetShowStatusBar shows or hides the view that displays metadata about the |
| 245 | // list, such as item counts. |
| 246 | func (m *Model) SetShowStatusBar(v bool) { |
| 247 | m.showStatusBar = v |
| 248 | m.updatePagination() |
| 249 | } |
| 250 | |
| 251 | // ShowStatusBar returns whether or not the status bar is set to be rendered. |
| 252 | func (m Model) ShowStatusBar() bool { |
nothing calls this directly
no test coverage detected