summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshish Gupta <ashmew2@gmail.com>2017-10-27 22:45:05 +0200
committerAshish Gupta <ashmew2@gmail.com>2017-10-27 22:45:05 +0200
commit1ffbc36661f162d4801cc27c06de30cae4c7c84e (patch)
treefe289b3c443f51e592476d750b01a57c49c40794
parentf22a0ef3cd7aa7071c2ed85630a85eb1b2dd2e36 (diff)
downloadnetsurf-1ffbc36661f162d4801cc27c06de30cae4c7c84e.tar.gz
netsurf-1ffbc36661f162d4801cc27c06de30cae4c7c84e.tar.bz2
Make full screen (almost..)
-rw-r--r--frontends/kolibrios/gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/kolibrios/gui.c b/frontends/kolibrios/gui.c
index 159053d16..79d1ce4ee 100644
--- a/frontends/kolibrios/gui.c
+++ b/frontends/kolibrios/gui.c
@@ -474,11 +474,11 @@ process_cmdline(int argc, char** argv)
fewidth = nsoption_int(window_width);
if (fewidth <= 0) {
- fewidth = 800;
+ fewidth = 1024;
}
feheight = nsoption_int(window_height);
if (feheight <= 0) {
- feheight = 600;
+ feheight = 720;
}
if ((nsoption_charp(homepage_url) != NULL) &&
(nsoption_charp(homepage_url)[0] != '\0')) {