(&mut self)
| 23 | } |
| 24 | |
| 25 | pub(crate) fn fill_missing(&mut self) { |
| 26 | for name in ENGINE_CONFIG.character_full_name_list() { |
| 27 | self.volumes.entry(name.clone()).or_insert(100.0); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | pub(crate) fn from_weak(weak: Weak<MainWindow>) -> Self { |
| 32 | if let Some(window) = weak.upgrade() { |
no test coverage detected