Skip to content

Commit

Permalink
0.17.10: fix the app sometimes appearing in the wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiayang committed May 29, 2022
1 parent cfc66a2 commit 1fa58d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions MoeStreamer.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.17.9;
MARKETING_VERSION = 0.17.10;
PRODUCT_BUNDLE_IDENTIFIER = com.zhiayang.MoeStreamer;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "";
Expand Down Expand Up @@ -708,7 +708,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.17.9;
MARKETING_VERSION = 0.17.10;
PRODUCT_BUNDLE_IDENTIFIER = com.zhiayang.MoeStreamer;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "";
Expand Down
2 changes: 1 addition & 1 deletion MoeStreamer/src/ui/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class ViewController : NSObject, NSPopoverDelegate
statusBarButton.action = #selector(togglePopover(sender:))
statusBarButton.target = self

popover.contentSize = NSSize(width: 240, height: 240)
popover.contentSize = NSSize(width: 320, height: 500)
popover.contentViewController = NSHostingController(rootView: self.rootView)
popover.behavior = .transient
popover.delegate = self
Expand Down

0 comments on commit 1fa58d7

Please sign in to comment.