change hard coded max and min (#1345)

This commit is contained in:
Dave Simpson 2022-08-24 12:32:42 +02:00 committed by GitHub
parent cc5cf3b165
commit b5f9aa0f15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,8 +23,8 @@ import {
} from '@theia/core/lib/common/i18n/localization';
import SettingsStepInput from './settings-step-input';
const maxScale = 200;
const minScale = -100;
const maxScale = 280;
const minScale = -60;
const scaleStep = 20;
const maxFontSize = 72;