Skip to content

Commit

Permalink
Merge branch 'apps-2893' into 'master'
Browse files Browse the repository at this point in the history
APPS-2893: make sure nothing changes in classic file loading code

See merge request ggb/geogebra!2898
  • Loading branch information
Ágoston Sütő committed May 22, 2021
2 parents ee8fc92 + 9c16dc7 commit 264a32b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions web/src/main/java/org/geogebra/web/full/main/AppWFull.java
Original file line number Diff line number Diff line change
Expand Up @@ -1514,8 +1514,6 @@ public void afterLoadFileAppOrNot(boolean asSlide) {

if (isUnbundled()) {
setPerspectiveForUnbundled(p);
} else {
setPerspectives(p);
}

getGuiManager().updateFrameSize();
Expand All @@ -1528,6 +1526,10 @@ && getInputPosition() == InputPosition.algebraView) {
p2.setInputPosition(InputPosition.bottom);
}
}

if (!isUnbundled()) {
setPerspectives(p);
}
}

getScriptManager().ggbOnInit(); // put this here from Application
Expand Down

0 comments on commit 264a32b

Please sign in to comment.