Update display settings 2017 12 6 authored by Ali Can Demiralp's avatar Ali Can Demiralp
...@@ -32,9 +32,10 @@ Consider 4 types of configurations that cascade upon each other, similar to CSS. ...@@ -32,9 +32,10 @@ Consider 4 types of configurations that cascade upon each other, similar to CSS.
Cascading: Cascading:
| Setting Type | Effect | Cascaded Result | | Setting Type | Effect | Cascaded Result |
| ------------- | ------------------ | --------------------- | | ------------------------ | ------------------ | ----------------------- |
| Library | {a: 1, b: 2, c: 3} | {a: 1, b: 2, c: 3} | | Library Default | {a: 1, b: 2, c: 3} | {a: 1, b: 2, c: 3} |
| Machine | {a: 42} | {a: 42, b: 2 , c: 3} | | Machine | {a: 42} | {a: 42, b: 2 , c: 3} |
| Application | {b: 63} | {a: 42, b: 63, c: 3} | | User | {b: 63} | {a: 42, b: 63, c: 3} |
| User | {a: 84, c: 21} | {a: 84, b: 63, c: 21} | | Application Default | {c: 84} | {a: 42, b: 63, c: 84} |
\ No newline at end of file | Application User-Defined | {a: 105, c: 126} | {a: 105, b: 63, c: 126} |
\ No newline at end of file