(enabled bool)
| 372 | } |
| 373 | |
| 374 | func (tv *TableView) applyEnabled(enabled bool) { |
| 375 | tv.WidgetBase.applyEnabled(enabled) |
| 376 | |
| 377 | win.EnableWindow(tv.hwndFrozenLV, enabled) |
| 378 | win.EnableWindow(tv.hwndNormalLV, enabled) |
| 379 | } |
| 380 | |
| 381 | func (tv *TableView) applyFont(font *Font) { |
| 382 | if tv.customHeaderHeight > 0 || tv.customRowHeight > 0 { |
nothing calls this directly
no test coverage detected