Skip to content

Commit

Permalink
don't force new manifest when initializing permission selector
Browse files Browse the repository at this point in the history
  • Loading branch information
codeanticode committed Aug 22, 2017
1 parent 34483e6 commit e7f80a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/processing/mode/android/Permissions.java
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public void actionPerformed(ActionEvent actionEvent) {
setLocation((screen.width - windowSize.width) / 2,
(screen.height - windowSize.height) / 2);

Manifest mf = new Manifest(sketch, appComp, modeFolder, true);
Manifest mf = new Manifest(sketch, appComp, modeFolder, false);
setSelections(mf.getPermissions());

// show the window and get to work
Expand Down

0 comments on commit e7f80a9

Please sign in to comment.