SetSize sets the overlay dimensions.
(width, height int)
| 50 | |
| 51 | // SetSize sets the overlay dimensions. |
| 52 | func (s *SettingsOverlay) SetSize(width, height int) { |
| 53 | s.width = width |
| 54 | s.height = height |
| 55 | } |
| 56 | |
| 57 | // LoadFromConfig populates settings items from a config. |
| 58 | func (s *SettingsOverlay) LoadFromConfig(cfg *config.Config) { |
no outgoing calls