summaryrefslogtreecommitdiff
path: root/frontends/windows/window.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-10-19 11:12:19 +0100
committerVincent Sanders <vince@kyllikki.org>2016-10-19 11:12:19 +0100
commit601d9da66d173152fcc095d271b08b43a02ca905 (patch)
treef705edb13239f3664a1197b9ac20f33380d97f74 /frontends/windows/window.c
parent7d808e95496b8f2175537f03dd2edd6bb58156c9 (diff)
downloadnetsurf-601d9da66d173152fcc095d271b08b43a02ca905.tar.gz
netsurf-601d9da66d173152fcc095d271b08b43a02ca905.tar.bz2
fix windows user preferences location storage
Diffstat (limited to 'frontends/windows/window.c')
-rw-r--r--frontends/windows/window.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontends/windows/window.c b/frontends/windows/window.c
index 5db464a18..7069417e7 100644
--- a/frontends/windows/window.c
+++ b/frontends/windows/window.c
@@ -1099,7 +1099,8 @@ nsws_window_command(HWND hwnd,
nsoption_set_int(window_y, r.top);
nsoption_set_int(window_width, r.right - r.left);
nsoption_set_int(window_height, r.bottom - r.top);
- nsoption_write(options_file_location, NULL, NULL);
+
+ nsws_prefs_save();
break;
}