Change the default bringToFront behaviour to not do it automatically
This commit is contained in:
parent
497756e8b1
commit
0c39efe32f
2 changed files with 2 additions and 2 deletions
|
|
@ -33,7 +33,7 @@ export function GenericAppMixin(HandlebarsApp) {
|
|||
async render(options = {}, _options = {}) {
|
||||
super.render(options, _options);
|
||||
const instance = foundry.applications.instances.get(this.id);
|
||||
if (instance !== undefined && !options.noBringToFront) {
|
||||
if (instance !== undefined && options.orBringToFront) {
|
||||
instance.bringToFront();
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue