From 63d7247a9cace6cc729441508c0cfd82f043ff4d Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Mon, 27 May 2013 14:18:01 +0100 Subject: fix mismatched option name and variable names block_ads should be block_advertisments to match option name toolbar_status_width should be toolbar_status_size to match option name --- gtk/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk/gui.c') diff --git a/gtk/gui.c b/gtk/gui.c index 3408bb9ac..657770db6 100644 --- a/gtk/gui.c +++ b/gtk/gui.c @@ -292,8 +292,8 @@ static void check_options(char **respath) * The GTK front end now correctly uses it as a proportion of window * width. Here we assume that a value of less than 15% is wrong * and set to the default two thirds. */ - if (nsoption_int(toolbar_status_width) < 1500) { - nsoption_set_int(toolbar_status_width, 6667); + if (nsoption_int(toolbar_status_size) < 1500) { + nsoption_set_int(toolbar_status_size, 6667); } /* user options should be stored in the users home directory */ -- cgit v1.2.3