summaryrefslogtreecommitdiff
path: root/gtk/gtk_completion.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtk_completion.c')
-rw-r--r--gtk/gtk_completion.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/gtk_completion.c b/gtk/gtk_completion.c
index 72e165500..7ad9897d2 100644
--- a/gtk/gtk_completion.c
+++ b/gtk/gtk_completion.c
@@ -9,6 +9,7 @@
#include "netsurf/gtk/gtk_completion.h"
#include "netsurf/content/urldb.h"
#include "netsurf/utils/log.h"
+#include "netsurf/desktop/options.h"
GtkListStore *nsgtk_completion_list;
@@ -57,6 +58,7 @@ bool nsgtk_completion_udb_callback(const char *url, const struct url_data *data)
void nsgtk_completion_update(const char *prefix)
{
nsgtk_completion_empty();
- urldb_iterate_partial(prefix, nsgtk_completion_udb_callback);
+ if (option_url_suggestion == true)
+ urldb_iterate_partial(prefix, nsgtk_completion_udb_callback);
}