plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 4eac378eba7b7376621bfb57bb282957ef714628
parent 79555a9987d62cd15b77df2b4328e963583a160e
Author: Russ Cox <rsc@swtch.com>
Date:   Tue, 17 Feb 2015 14:45:46 -0500

devdraw: enable retina behavior by default on OS X

Change-Id: I243a1fe3f9ec0841570c4cd69c02be9cfd9ade50
Reviewed-on: https://plan9port-review.googlesource.com/1172
Reviewed-by: Russ Cox <rsc@swtch.com>

Diffstat:
Msrc/cmd/devdraw/cocoa-screen.m | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/cmd/devdraw/cocoa-screen.m b/src/cmd/devdraw/cocoa-screen.m @@ -41,10 +41,10 @@ int usebigarrow = 0; static void setprocname(const char*); /* - * By default, devdraw ignores retina displays. A non-zero evironment variable - * |devdrawretina| will override this. + * By default, devdraw uses retina displays. + * Set devdrawretina=0 in the environment to override. */ -int devdrawretina = 0; +int devdrawretina = 1; void usage(void)