Skip to content

Commit

Permalink
Merge branch 'master' into patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyjurjens authored Sep 6, 2020
2 parents dbfd2e0 + 32cbb0b commit af32620
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions template/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# If you want to compile for arm64e, you'll need a macOS device or a arm64e device that's able to compile for arm64e.
# Once done that, uncomment the "#arm64e" by removing the "#"

# THEOS_DEVICE_IP = 127.0.0.1 -p 2222 # install to device from pc
ARCHS = arm64 #arm64e
ARCHS = arm64 arm64e
DEBUG = 0
FINALPACKAGE = 1
FOR_RELEASE = 1
Expand Down
2 changes: 1 addition & 1 deletion template/Menu.mm
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ -(id)initWithTitle:(NSString *)title_ titleColor:(UIColor *)titleColor_ titleFon
[self.header addGestureRecognizer:dragMenuRecognizer];

UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(hideMenu:)];
tapGestureRecognizer.numberOfTapsRequired = 2;
tapGestureRecognizer.numberOfTapsRequired = 1;
[self.header addGestureRecognizer:tapGestureRecognizer];

[mainWindow addSubview:self];
Expand Down

0 comments on commit af32620

Please sign in to comment.