Auto merge of #18295 - paulrouget:better_default_options, r=jdm

enable antialiasing by default

This is not a problem for regular Servo because these values are toggled when the command line is parsed. But it's not the case when embedding Servo.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18295)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-08-29 11:26:45 -05:00 committed by GitHub
commit 62930d0073

View file

@ -516,9 +516,9 @@ pub fn default_opts() -> Opts {
bubble_inline_sizes_separately: false,
show_debug_fragment_borders: false,
show_debug_parallel_layout: false,
enable_text_antialiasing: false,
enable_subpixel_text_antialiasing: false,
enable_canvas_antialiasing: false,
enable_text_antialiasing: true,
enable_subpixel_text_antialiasing: true,
enable_canvas_antialiasing: true,
trace_layout: false,
debugger_port: None,
devtools_port: None,