Add a variable in config.def.h for configuring spatial browsing.
This commit is contained in:
parent
e75753775f
commit
7c7a3b58cf
|
@ -10,6 +10,7 @@ static time_t sessiontime = 3600;
|
|||
static char *cafile = "/etc/ssl/certs/ca-certificates.crt";
|
||||
static char *strictssl = FALSE; /* Refuse untrusted SSL connections */
|
||||
#define HIDE_BACKGROUND FALSE
|
||||
#define SPATIAL_BROWSING TRUE
|
||||
|
||||
#define SETPROP(p, q) { .v = (char *[]){ "/bin/sh", "-c", \
|
||||
"prop=\"`xprop -id $2 $0 | cut -d '\"' -f 2 | dmenu`\" &&" \
|
||||
|
|
2
surf.c
2
surf.c
|
@ -529,7 +529,7 @@ newclient(void) {
|
|||
g_object_set(G_OBJECT(settings), "auto-load-images", loadimage, NULL);
|
||||
g_object_set(G_OBJECT(settings), "enable-plugins", plugin, NULL);
|
||||
g_object_set(G_OBJECT(settings), "enable-scripts", script, NULL);
|
||||
g_object_set(G_OBJECT(settings), "enable-spatial-navigation", true, NULL);
|
||||
g_object_set(G_OBJECT(settings), "enable-spatial-navigation", SPATIAL_BROWSING, NULL);
|
||||
|
||||
g_free(uri);
|
||||
|
||||
|
|
Loading…
Reference in New Issue