Update display settings 2017 12 6 authored by Ali Can Demiralp's avatar Ali Can Demiralp
......@@ -24,7 +24,7 @@ Consider 5 types of configurations that cascade upon each other, similar to CSS.
- Is optional.
- Example use case: PLI viewer should only run on a Window, not an HMD.
5 Application User-Defined Settings
5 Application Custom Settings
- Overrides 4, applies to a particular instance of Phoenix application.
- Is a file residing in the application directory.
- Is optional (but auto-generated on launch if requested by 1/2/3).
......@@ -32,10 +32,10 @@ Consider 5 types of configurations that cascade upon each other, similar to CSS.
Cascading:
| Setting Type | Effect | Cascaded Result |
| ------------------------ | ------------------ | ----------------------- |
| Library Default | {a: 1, b: 2, c: 3} | {a: 1, b: 2, c: 3} |
| Machine | {a: 42} | {a: 42, b: 2 , c: 3} |
| User | {b: 63} | {a: 42, b: 63, c: 3} |
| Application Default | {c: 84} | {a: 42, b: 63, c: 84} |
| Application User-Defined | {a: 105, c: 126} | {a: 105, b: 63, c: 126} |
\ No newline at end of file
| Setting Type | Effect | Cascaded Result |
| ------------------- | ------------------ | ----------------------- |
| Library Default | {a: 1, b: 2, c: 3} | {a: 1, b: 2, c: 3} |
| Machine | {a: 42} | {a: 42, b: 2 , c: 3} |
| User | {b: 63} | {a: 42, b: 63, c: 3} |
| Application Default | {c: 84} | {a: 42, b: 63, c: 84} |
| Application Custom | {a: 105, c: 126} | {a: 105, b: 63, c: 126} |
\ No newline at end of file