From e237519fdd73fb53fc18aec79ecea90966d22519 Mon Sep 17 00:00:00 2001 From: Glenn Watson Date: Mon, 29 Sep 2014 10:10:37 +1000 Subject: [PATCH] Revert "Set default resolution to 1280x1024 now that reftests render to FBO." This reverts commit c74798bb6bcb98d2d6af998e2ab0f08e79097147. --- components/util/opts.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/util/opts.rs b/components/util/opts.rs index 57e7b974504..677adba2592 100644 --- a/components/util/opts.rs +++ b/components/util/opts.rs @@ -125,7 +125,7 @@ pub fn from_cmdline_args(args: &[String]) -> Option { getopts::optflag("", "disable-text-aa", "Disable antialiasing for text rendering."), getopts::optflag("", "trace-layout", "Write layout trace to external file for debugging."), getopts::optflag("", "devtools", "Start remote devtools server"), - getopts::optopt("", "resolution", "Set window resolution.", "1280x1024"), + getopts::optopt("", "resolution", "Set window resolution.", "800x600"), getopts::optflag("h", "help", "Print this message") ); @@ -213,7 +213,7 @@ pub fn from_cmdline_args(args: &[String]) -> Option { TypedSize2D(res[0], res[1]) } None => { - TypedSize2D(1280, 1024) + TypedSize2D(800, 600) } };