openOutpaint/js/config.js
Victor Seiji Hariki aa3ec73b45 make config readonly
Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com>
2022-12-25 23:39:04 -03:00

12 lines
322 B
JavaScript

/**
* This is a file for static unchanging global configurations.
*
* Do NOT confuse with settings, which are modifiable by either the settings menu, or in the application itself.
*/
const config = makeReadOnly(
{
// Scroll Tick Limit (How much must scroll to reach next tick)
wheelTickSize: 50,
},
"config"
);