mirror of
https://gitlab.com/arnekeller/ascii-table.git
synced 2024-12-04 21:49:08 +00:00
save game
This commit is contained in:
parent
e6f23201c4
commit
a93a2a8eb3
@ -400,11 +400,11 @@ impl SmartString {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn lpush_visible(&mut self, ch: char) {
|
fn lpush_visible(&mut self, ch: char) {
|
||||||
let last_fragment = self.fragments.iter_mut()
|
let first_fragment = self.fragments.iter_mut()
|
||||||
.filter(|(visible, _)| *visible)
|
.filter(|(visible, _)| *visible)
|
||||||
.map(|(_, string)| string)
|
.map(|(_, string)| string)
|
||||||
.next();
|
.next();
|
||||||
if let Some(fragment) = last_fragment {
|
if let Some(fragment) = first_fragment {
|
||||||
fragment.push(ch);
|
fragment.push(ch);
|
||||||
} else {
|
} else {
|
||||||
self.fragments.insert(0, (true, ch.to_string()));
|
self.fragments.insert(0, (true, ch.to_string()));
|
||||||
|
Loading…
Reference in New Issue
Block a user