diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | control-center | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1,4 +1,5 @@ - do not crash when selecting "Reload" in contextual menu (#44226) +- disable contextual menu - make icon+text act as a single item for links - make sure --save-html-pages write UTF-8 files - use gray gradient in right background diff --git a/control-center b/control-center index ca1dc3ce..1fcd97b8 100755 --- a/control-center +++ b/control-center @@ -928,6 +928,7 @@ $view->signal_connect('navigation-requested' => $url =~ s!file:///!!; $url =~ s!%20! !g; + # do not crash on eg: "reload": if (!$tool_callbacks{$url}) { warn "Warning: invalid tool name: $url\n"; return; |