electron-wix-msi icon indicating copy to clipboard operation
electron-wix-msi copied to clipboard

full customized ui

Open ezequielvictor opened this issue 1 year ago • 0 comments

I think we should be able to use our entire customized UI too.

the code below prevents us from creating our own custom dialogs, because it accuses us of duplication as it extends the default dialogs from WixUI (errors, user exit, install dialogs, etc)

if (this.ui && !this.extensions.find((e) => e === 'WixUIExtension')) { this.extensions.push('WixUIExtension'); } inside function createFire() on creator.js

maybe we could make this optional, what do you think?

ezequielvictor avatar Sep 20 '22 13:09 ezequielvictor