about summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuentin Rameau <quinq+hackers@fifth.space>2015-11-03 14:25:44 +0100
committerChristoph Lohmann <20h@r-36.net>2015-11-03 19:44:05 +0100
commit9a2547230aeaa6598a0c23bb927d919e634b929e (patch)
tree8c0fb1903aeb97d514b82d83ad317f1be8eb855b
parentAdd setstyle() (diff)
downloadsurf-9a2547230aeaa6598a0c23bb927d919e634b929e.tar.gz
surf-9a2547230aeaa6598a0c23bb927d919e634b929e.tar.bz2
surf-9a2547230aeaa6598a0c23bb927d919e634b929e.zip
Fix fullscreen handling
Handle the fullscreen in a more consistent way with other options:
-f disables fullscreen while -F enables fullscreen.

Signed-off-by: Christoph Lohmann <20h@r-36.net>
-rw-r--r--surf.14
-rw-r--r--surf.c8
2 files changed, 5 insertions, 7 deletions
diff --git a/surf.1 b/surf.1
index dc033c6..3457a55 100644
--- a/surf.1
+++ b/surf.1
@@ -51,10 +51,10 @@ Reparents to window specified by
 .I xid.
 .TP
 .B \-f
-Run surf in fullscreen mode.
+Start surf in windowed mode (not fullscreen).
 .TP
 .B \-F
-Disable to run in fullscreen by default.
+Start surf in fullscreen mode.
 .TP
 .B \-g
 Disable giving the geolocation to websites.
diff --git a/surf.c b/surf.c
index 3f33e54..035853a 100644
--- a/surf.c
+++ b/surf.c
@@ -1053,10 +1053,8 @@ newclient(void)
 		c->isinspecting = false;
 	}
 
-	if (runinfullscreen) {
-		c->fullscreen = 0;
+	if (runinfullscreen)
 		fullscreen(c, NULL);
-	}
 
 	setatom(c, AtomFind, "");
 	setatom(c, AtomUri, "about:blank");
@@ -1685,10 +1683,10 @@ main(int argc, char *argv[])
 		embed = strtol(EARGF(usage()), NULL, 0);
 		break;
 	case 'f':
-		runinfullscreen = 1;
+		runinfullscreen = 0;
 		break;
 	case 'F':
-		runinfullscreen = 0;
+		runinfullscreen = 1;
 		break;
 	case 'g':
 		allowgeolocation = 0;