Browse Source

fix page refresh infinitive loop

CPP-GTK4
yggverse 2 months ago
parent
commit
2d95bca810
  1. 7
      src/app/browser/main/tab/page.cpp

7
src/app/browser/main/tab/page.cpp

@ -61,17 +61,14 @@ void Page::refresh( @@ -61,17 +61,14 @@ void Page::refresh(
const Glib::ustring & SUBTITLE,
const double & PROGRESS
) {
title = TITLE;
title = TITLE; // @TODO copy
subtitle = SUBTITLE;
pageProgress->refresh(
PROGRESS
);
activate_action(
"win.refresh"
);
pageNavigation->refresh();
}
void Page::navigation_update(

Loading…
Cancel
Save