Browse Source

implement previous session restore

PHP-GTK3
yggverse 4 months ago
parent
commit
5c3ada2362
  1. 19
      src/Entity/Browser/Container/Tab.php

19
src/Entity/Browser/Container/Tab.php

@ -33,18 +33,13 @@ class Tab
$this->_scrollable $this->_scrollable
); );
// Init previous session @TODO // Restore previous session
$this->appendPage( foreach ($this->container->browser->database->getSession() as $session)
'gemini://yggverse.cities.yesterweb.org' {
); $this->appendPage(
$session->request
$this->appendPage( );
'gemini://tlgs.one' }
);
$this->appendPage(
'nex://nightfall.city'
);
// Init events // Init events
$this->gtk->connect( $this->gtk->connect(

Loading…
Cancel
Save