Omit '(unnamed)' from tab name

This commit is contained in:
AdaShoelace 2021-06-01 09:41:16 +02:00
parent 16a47cdd06
commit b9677589a0

View File

@ -257,7 +257,7 @@ impl Tab {
};
let name = if name.is_empty() {
format!("Tab #{} (unnamed)", position + 1)
format!("Tab #{}", position + 1)
} else {
name
};