diff options
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/documentwidget.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ui/documentwidget.c b/src/ui/documentwidget.c index b59233c7..6524d454 100644 --- a/src/ui/documentwidget.c +++ b/src/ui/documentwidget.c | |||
@@ -1029,6 +1029,7 @@ static void showOrHidePinningIndicator_DocumentWidget_(iDocumentWidget *d) { | |||
1029 | } | 1029 | } |
1030 | 1030 | ||
1031 | static void documentWasChanged_DocumentWidget_(iDocumentWidget *d) { | 1031 | static void documentWasChanged_DocumentWidget_(iDocumentWidget *d) { |
1032 | updateVisitedLinks_GmDocument(d->doc); | ||
1032 | documentRunsInvalidated_DocumentWidget_(d); | 1033 | documentRunsInvalidated_DocumentWidget_(d); |
1033 | updateWindowTitle_DocumentWidget_(d); | 1034 | updateWindowTitle_DocumentWidget_(d); |
1034 | updateVisible_DocumentWidget_(d); | 1035 | updateVisible_DocumentWidget_(d); |
@@ -2417,6 +2418,11 @@ static iBool handleCommand_DocumentWidget_(iDocumentWidget *d, const char *cmd) | |||
2417 | } | 2418 | } |
2418 | return iFalse; | 2419 | return iFalse; |
2419 | } | 2420 | } |
2421 | if (equal_Command(cmd, "visited.changed")) { | ||
2422 | updateVisitedLinks_GmDocument(d->doc); | ||
2423 | invalidateVisibleLinks_DocumentWidget_(d); | ||
2424 | return iFalse; | ||
2425 | } | ||
2420 | if (equal_Command(cmd, "document.render")) /* `Periodic` makes direct dispatch to here */ { | 2426 | if (equal_Command(cmd, "document.render")) /* `Periodic` makes direct dispatch to here */ { |
2421 | // printf("%u: document.render\n", SDL_GetTicks()); | 2427 | // printf("%u: document.render\n", SDL_GetTicks()); |
2422 | if (SDL_GetTicks() - d->drawBufs->lastRenderTime > 150) { | 2428 | if (SDL_GetTicks() - d->drawBufs->lastRenderTime > 150) { |