Skip to content

Commit

Permalink
✨ Do not add to timesLooped if direction not selected
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKai77 committed Aug 12, 2023
1 parent 9953780 commit e078c5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Loop.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-Default";
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = "";
CODE_SIGN_ENTITLEMENTS = Loop/Loop.entitlements;
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "-";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
DEAD_CODE_STRIPPING = YES;
Expand Down Expand Up @@ -542,7 +542,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-Default";
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = "";
CODE_SIGN_ENTITLEMENTS = Loop/Loop.entitlements;
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "-";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
DEAD_CODE_STRIPPING = YES;
Expand Down
3 changes: 2 additions & 1 deletion Loop/Radial Menu/RadialMenuController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ class RadialMenuController {
if frontmostWindow != nil &&
wasForceClosed == false &&
isLoopRadialMenuShown == true &&
frontmostWindow != nil {
frontmostWindow != nil &&
currentResizingDirection != .noAction {

windowEngine.resize(window: frontmostWindow!, direction: currentResizingDirection)

Expand Down

0 comments on commit e078c5c

Please sign in to comment.