Skip to content

Commit

Permalink
Merge pull request #306 from IvanMathy/release/1.4.0
Browse files Browse the repository at this point in the history
Fixed popover issue
  • Loading branch information
IvanMathy committed Oct 23, 2021
2 parents bd4c655 + cd6c2cf commit 2c30ad5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Boop/Boop.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 18;
CURRENT_PROJECT_VERSION = 21;
DEVELOPMENT_TEAM = "";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down Expand Up @@ -840,11 +840,11 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = Boop/Boop.entitlements;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 18;
DEVELOPMENT_TEAM = "";
CURRENT_PROJECT_VERSION = 21;
DEVELOPMENT_TEAM = RLZ8XBTX7G;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Boop/Frameworks",
Expand Down
2 changes: 1 addition & 1 deletion Boop/Boop/Controllers/PopoverViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,6 @@ extension PopoverViewController: NSTextFieldDelegate {
let results = scriptManager.search(searchField.stringValue)
tableViewController.results = results

self.tableHeightConstraint.constant = CGFloat(65 * min(5, results.count))
self.tableHeightConstraint.constant = CGFloat(45 * min(5, results.count) + ((results.count != 0) ? 20 : 0))
}
}

0 comments on commit 2c30ad5

Please sign in to comment.