[thin_check (rust)] BTree values must now implement Copy

This commit is contained in:
Joe Thornber
2020-09-18 10:06:33 +01:00
parent bcfb9a73a1
commit bc058f8baf
4 changed files with 31 additions and 33 deletions

View File

@@ -634,7 +634,9 @@ fn explore(path: &Path) -> Result<()> {
panels.push(Box::new(BottomLevelPanel::new(thin_id, node)));
}
Some(Action::PopPanel) => {
panels.pop();
if panels.len() > 2 {
panels.pop();
}
}
_ => {}
},