diff --git a/src/app/browser/window/tab.rs b/src/app/browser/window/tab.rs index c137b76e..5d4e221e 100644 --- a/src/app/browser/window/tab.rs +++ b/src/app/browser/window/tab.rs @@ -205,6 +205,11 @@ impl Tab { // Append new page self.append(); } + + // Append just one blank page if nothing to restore + if self.index.borrow().is_empty() { + self.append(); + } } Err(e) => return Err(e.to_string()), }