Fix some view offsets that broke with CPR removal

* Fix Quote builder
* Fix File Browser details
* Added 'viewOffsets' ability to loadFromMenuConfig() and friends
* Add MenuModule.getCustomViewsWithFilter() -> Array[] of views
* Add ViewController.applyViewOffsets()
This commit is contained in:
Bryan Ashby
2022-08-15 22:23:14 -06:00
parent 56f03ff847
commit b48d133229
6 changed files with 78 additions and 18 deletions

View File

@@ -49,6 +49,7 @@ function View(options) {
this.position = { x: 0, y: 0 };
this.textStyle = options.textStyle || 'normal';
this.focusTextStyle = options.focusTextStyle || this.textStyle;
this.offsetsApplied = false;
if (options.id) {
this.setId(options.id);