mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-25 08:38:30 -05:00
Replaced hardcoded value of 136 with a variable.
This commit is contained in:
parent
844765bde6
commit
ae0d60cb43
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ import Paint from '../../painteditor/Paint';
|
||||||
import Events from '../../utils/Events';
|
import Events from '../../utils/Events';
|
||||||
import Localization from '../../utils/Localization';
|
import Localization from '../../utils/Localization';
|
||||||
import ScratchAudio from '../../utils/ScratchAudio';
|
import ScratchAudio from '../../utils/ScratchAudio';
|
||||||
import {frame, gn, CSSTransition, localx, newHTML, scaleMultiplier, getIdFor, isTablet, newDiv,
|
import {frame, gn, CSSTransition, localx, newHTML, scaleMultiplier, fullscreenScaleMultiplier, getIdFor, isTablet, newDiv,
|
||||||
newTextInput, isAndroid, getDocumentWidth, getDocumentHeight, setProps, globalx} from '../../utils/lib';
|
newTextInput, isAndroid, getDocumentWidth, getDocumentHeight, setProps, globalx} from '../../utils/lib';
|
||||||
|
|
||||||
let projectNameTextInput = null;
|
let projectNameTextInput = null;
|
||||||
|
@ -809,7 +809,7 @@ export default class UI {
|
||||||
gn(list[i]).className = gn(list[i]).className + ' presentationmode';
|
gn(list[i]).className = gn(list[i]).className + ' presentationmode';
|
||||||
frame.appendChild(gn(list[i]));
|
frame.appendChild(gn(list[i]));
|
||||||
}
|
}
|
||||||
var scale = Math.min((w - (136 * scaleMultiplier)) / gn('stage').owner.width, h / gn('stage').owner.height);
|
var scale = Math.min((w - (fullscreenScaleMultiplier * scaleMultiplier)) / gn('stage').owner.width, h / gn('stage').owner.height);
|
||||||
var dx = Math.floor((w - (gn('stage').owner.width * scale)) / 2);
|
var dx = Math.floor((w - (gn('stage').owner.width * scale)) / 2);
|
||||||
var dy = Math.floor((h - (gn('stage').owner.height * scale)) / 2);
|
var dy = Math.floor((h - (gn('stage').owner.height * scale)) / 2);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue