fix: feed menu sporadically not opening (#9)
This commit is contained in:
@@ -28,7 +28,13 @@
|
||||
- (NSMenuItem*)newMenuItem {
|
||||
NSMenuItem *item = [NSMenuItem new];
|
||||
item.title = self.group.anyName;
|
||||
item.toolTip = self.subtitle;
|
||||
// Tooltip disabled (feed-group only) because it causes issues on macOS Ventura.
|
||||
// Menu opens invisibly (OrderNSWindow: unsupported window ordering op -1)
|
||||
// steps to reproduce:
|
||||
// 1. hover over a feed-group menu item until tooltip pops up
|
||||
// 2. hover over another feed with tooltip
|
||||
// 3. go back to previous feed.
|
||||
// item.toolTip = self.subtitle;
|
||||
item.enabled = (self.articles.count > 0);
|
||||
item.image = self.iconImage16;
|
||||
item.representedObject = self.indexPath;
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.2.1</string>
|
||||
<string>1.2.2</string>
|
||||
<key>CFBundleURLTypes</key>
|
||||
<array>
|
||||
<dict>
|
||||
@@ -70,7 +70,7 @@
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>14835</string>
|
||||
<string>14866</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
<string>public.app-category.news</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
|
||||
Reference in New Issue
Block a user