-
Notifications
You must be signed in to change notification settings - Fork 220
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great refactor!
I tested on a clean install and MSAA is 4X by default. It was 2X by default before.
Thanks @MortimerGoro! Default MSAA should be ok now |
app/src/main/res/values/strings.xml
Outdated
@@ -35,7 +35,7 @@ | |||
<string name="developer_options_events">Input Events</string> | |||
<string name="developer_options_display_density">Display Density:</string> | |||
<string name="developer_options_window_size">Window Size:</string> | |||
<string name="developer_options_window_size_by">by</string> | |||
<string name="developer_options_by">By</string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the L10n string should be like Window Size: {width} × {height}
or Window Size: {width} by {height}
we can't use the word By
by itself, because the ordering of words doesn't make sense in all other languages
app/src/main/res/values/strings.xml
Outdated
<string name="developer_options_env_cave">Cave</string> | ||
<string name="developer_options_env_void">Void</string> | ||
<string name="developer_options_environments">Environment</string> | ||
<string name="developer_options_env_meadow">meadow</string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why ar these lowercased but the Pointer Color
selections, for example, are not?
@cvan Fixed those two, thanks! |
343e82f
to
633f59b
Compare
Looks like this is ready to land. Any outstanding issues can be addressed in a follow up issue. |
Fixes #580 Refactored developer options code. Haven't replaced the scrollview for a listview as we don''t have so many elements as to affect the performance and would require some more work.