filling font size input field

This commit is contained in:
Miodec 2022-09-01 10:58:05 +02:00
parent 9819dfbf2d
commit 6cbfb70df5

View file

@ -3455,6 +3455,11 @@ ConfigEvent.subscribe((eventKey, eventValue) => {
(command) => command.id == "changeCustomBackground"
)[0].defaultValue = eventValue as string;
}
if (eventKey === "fontSize") {
defaultCommands.list.filter(
(command) => command.id == "changeFontSize"
)[0].defaultValue = eventValue as string;
}
if (eventKey === "customLayoutFluid") {
defaultCommands.list.filter(
(command) => command.id == "changeCustomLayoutfluid"