mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Revert "Set default resolution to 1280x1024 now that reftests render to FBO."
This reverts commit c74798bb6b
.
This commit is contained in:
parent
276ca5f2e9
commit
e237519fdd
1 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,7 @@ pub fn from_cmdline_args(args: &[String]) -> Option<Opts> {
|
|||
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<Opts> {
|
|||
TypedSize2D(res[0], res[1])
|
||||
}
|
||||
None => {
|
||||
TypedSize2D(1280, 1024)
|
||||
TypedSize2D(800, 600)
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue