Browse Source

require page number argument

CPP-GTK4
yggverse 1 month ago
parent
commit
ebd2b843a4
  1. 6
      src/app/browser/main.cpp

6
src/app/browser/main.cpp

@ -44,13 +44,15 @@ void Main::tab_append()
void Main::tab_update() void Main::tab_update()
{ {
tab->update(); tab->update(
tab->get_current_page()
);
}; };
void Main::tab_close() void Main::tab_close()
{ {
tab->close( tab->close(
tab->get_current_page() // active tab->get_current_page()
); );
}; };

Loading…
Cancel
Save