Add the ArtBrowser open when using Foundry's editImage action
This commit is contained in:
parent
516c0d0c5e
commit
cf8c82784b
5 changed files with 47 additions and 1 deletions
12
module/settings/user.mjs
Normal file
12
module/settings/user.mjs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { __ID__ } from "../consts.mjs";
|
||||
|
||||
export function registerUserSettings() {
|
||||
game.settings.register(__ID__, `openForEditImage`, {
|
||||
name: `IT.settings.openForEditImage.name`,
|
||||
hint: `IT.settings.openForEditImage.hint`,
|
||||
scope: `user`,
|
||||
type: Boolean,
|
||||
default: true,
|
||||
config: true,
|
||||
});
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue