Fixes, lints and i18n

This commit is contained in:
Jorik Schellekens 2020-05-20 14:44:56 +01:00
parent 6d9d4ee547
commit 82b76192ae
4 changed files with 4 additions and 6 deletions

View file

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import dis from './dispatcher';
import dis from './dispatcher/dispatcher';
import SettingsStore, {SettingLevel} from './settings/SettingsStore';
export class FontWatcher {
@ -42,7 +42,7 @@ export class FontWatcher {
};
_setRootFontSize = (size) => {
const fontSize = Math.max(Math.min(this.maxSize, size), this.minSize);
const fontSize = Math.max(Math.min(FontWatcher.maxSize, size), FontWatcher.minSize);
if (fontSize != size) {
SettingsStore.setValue("fontSize", null, SettingLevel.Device, fontSize);