Skip to content

Commit 2c30ad5

Browse files
authored
Merge pull request #306 from IvanMathy/release/1.4.0
Fixed popover issue
2 parents bd4c655 + cd6c2cf commit 2c30ad5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Boop/Boop.xcodeproj/project.pbxproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@
812812
CODE_SIGN_IDENTITY = "-";
813813
CODE_SIGN_STYLE = Manual;
814814
COMBINE_HIDPI_IMAGES = YES;
815-
CURRENT_PROJECT_VERSION = 18;
815+
CURRENT_PROJECT_VERSION = 21;
816816
DEVELOPMENT_TEAM = "";
817817
FRAMEWORK_SEARCH_PATHS = (
818818
"$(inherited)",
@@ -840,11 +840,11 @@
840840
buildSettings = {
841841
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
842842
CODE_SIGN_ENTITLEMENTS = Boop/Boop.entitlements;
843-
CODE_SIGN_IDENTITY = "-";
844-
CODE_SIGN_STYLE = Manual;
843+
CODE_SIGN_IDENTITY = "Apple Development";
844+
CODE_SIGN_STYLE = Automatic;
845845
COMBINE_HIDPI_IMAGES = YES;
846-
CURRENT_PROJECT_VERSION = 18;
847-
DEVELOPMENT_TEAM = "";
846+
CURRENT_PROJECT_VERSION = 21;
847+
DEVELOPMENT_TEAM = RLZ8XBTX7G;
848848
FRAMEWORK_SEARCH_PATHS = (
849849
"$(inherited)",
850850
"$(PROJECT_DIR)/Boop/Frameworks",

Boop/Boop/Controllers/PopoverViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,6 @@ extension PopoverViewController: NSTextFieldDelegate {
180180
let results = scriptManager.search(searchField.stringValue)
181181
tableViewController.results = results
182182

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

0 commit comments

Comments
 (0)