Fix incorrect call to setValue

pull/21833/head
Jorik Schellekens 2020-04-22 10:32:00 +01:00
parent 54a65441a5
commit 8d5965c33c
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ limitations under the License.
*/
import dis from './dispatcher';
import SettingsStore from './settings/SettingsStore';
import SettingsStore, {SettingLevel} from './settings/SettingsStore';
export class FontWatcher {
constructor(minSize, maxSize) {
@ -43,7 +43,7 @@ export class FontWatcher {
let fontSize = this._min_size < size ? size : this._min_size;
fontSize = fontSize < this._max_size ? fontSize : this._max_size;
if (fontSize != size) {
SettingsStore.setValue("font_size", null, fontSize);
SettingsStore.setValue("font_size", null, SettingLevel.Device, fontSize);
}
document.querySelector(":root").style.fontSize = fontSize + "px";
}