Adding a default font size option.
Thanks Alexander Sedov <alex0player@gmail.com>!
This commit is contained in:
parent
a5dddd8fd3
commit
d02f73d990
|
@ -10,6 +10,8 @@ static char *cafile = "/etc/ssl/certs/ca-certificates.crt";
|
|||
static char *strictssl = FALSE; /* Refuse untrusted SSL connections */
|
||||
static Bool kioskmode = FALSE; /* Ignore shortcuts */
|
||||
|
||||
static guint defaultfontsize = 12;
|
||||
|
||||
/* Webkit default features */
|
||||
static Bool enablescrollbars = TRUE;
|
||||
static Bool enablespatialbrowsing = TRUE;
|
||||
|
|
2
surf.c
2
surf.c
|
@ -752,6 +752,8 @@ newclient(void) {
|
|||
enableinspector, NULL);
|
||||
g_object_set(G_OBJECT(settings), "enable-default-context-menu",
|
||||
kioskmode ^ 1, NULL);
|
||||
g_object_set(G_OBJECT(settings), "default-font-size",
|
||||
defaultfontsize, NULL);
|
||||
|
||||
if(enableinspector) {
|
||||
c->inspector = WEBKIT_WEB_INSPECTOR(
|
||||
|
|
Loading…
Reference in New Issue