Fix context checkbox squish

1582974ba9113944876116a9e4903604c50b6054

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/power-user.js+1 -1
@@ -1745,7 +1745,7 @@ async function loadContextSettings() {
1745 power_user.context[control.property] = value;1745 power_user.context[control.property] = value;
1746 }1746 }
1747 console.log(`Setting ${$element.prop('id')} to ${value}`);1747 console.log(`Setting ${$element.prop('id')} to ${value}`);
1748 if (!CSS.supports('field-sizing', 'content')) {1748 if (!CSS.supports('field-sizing', 'content') && $(this).is('textarea')) {
1749 await resetScrollHeight($(this));1749 await resetScrollHeight($(this));
1750 }1750 }
1751 saveSettingsDebounced();1751 saveSettingsDebounced();