Add the ArtBrowser open when using Foundry's editImage action

This commit is contained in:
Oliver 2026-02-01 16:28:29 -07:00
parent 516c0d0c5e
commit cf8c82784b
5 changed files with 47 additions and 1 deletions

12
module/settings/user.mjs Normal file
View 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,
});
};