summaryrefslogtreecommitdiff
path: root/desktop/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/options.c')
-rw-r--r--desktop/options.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/desktop/options.c b/desktop/options.c
index 58c9ef24b..9679e82fe 100644
--- a/desktop/options.c
+++ b/desktop/options.c
@@ -124,7 +124,8 @@ int option_max_fetchers_per_host = 2;
* is this plus option_max_fetchers.
*/
int option_max_cached_fetch_handles = 6;
-/** Whether to use knockout rendering */
+/** Whether to allow target="_blank" */
+bool option_target_blank = true;
EXTRA_OPTION_DEFINE
@@ -174,6 +175,8 @@ struct {
OPTION_INTEGER, &option_max_fetchers_per_host },
{ "max_cached_fetch_handles",
OPTION_INTEGER, &option_max_cached_fetch_handles },
+ { "target_blank",
+ OPTION_BOOL, &option_target_blank },
EXTRA_OPTION_TABLE
};