Skip to content

Commit

Permalink
move handleSettings to right spot
Browse files Browse the repository at this point in the history
  • Loading branch information
codeanticode committed Apr 16, 2016
1 parent b7a5507 commit 5680a18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/processing/core/PApplet.java
Expand Up @@ -459,6 +459,8 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container,
activity = getActivity();
View rootView;

handleSettings();

// Get renderer name and class
String rendererName = sketchRenderer();
Class<?> rendererClass = null;
Expand Down Expand Up @@ -488,8 +490,6 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container,
throw new RuntimeException(message);
}

handleSettings();

if (fullScreen) {
int visibility;
if (SDK < 19) {
Expand Down

0 comments on commit 5680a18

Please sign in to comment.