don't sort vbox after combine

This commit is contained in:
Mashy 2019-10-29 18:36:15 +10:00
parent 83a87a64e3
commit 39be7b952f

View File

@ -169,7 +169,7 @@ impl Vbox {
let combo = combos.iter().find(|c| c.components == input).ok_or(err_msg("not a combo"))?; let combo = combos.iter().find(|c| c.components == input).ok_or(err_msg("not a combo"))?;
self.bound.push(combo.item); self.bound.push(combo.item);
self.bound.sort_unstable(); // self.bound.sort_unstable();
Ok(self) Ok(self)
} }