(&self, section_key: &'static str)
| 110 | } |
| 111 | |
| 112 | fn is_collapsed(&self, section_key: &'static str) -> bool { |
| 113 | self.collapsed_sections |
| 114 | .get(section_key) |
| 115 | .copied() |
| 116 | .unwrap_or(false) |
| 117 | } |
| 118 | |
| 119 | fn scroll_up(&mut self) { |
| 120 | if self.scroll_offset > 0 { |