Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Commit

Permalink
Merge pull request #726 from geraldcombs/master
Browse files Browse the repository at this point in the history
Add Wireshark to the Qt application list.
  • Loading branch information
tekezo committed Oct 30, 2016
2 parents d06e183 + 3093b2d commit 9b8ed20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion NEWS.md
Expand Up @@ -2,7 +2,7 @@

* Prepared settings have been updated.
* Fixed issues:
* Some Qt apps might be crash when AXNotifier is enabled. (VirtualBox, LyX)
* Some Qt apps might be crash when AXNotifier is enabled. (LyX, VirtualBox, Wireshark)


# Version 10.21.0
Expand Down
Expand Up @@ -150,10 +150,12 @@ - (void)observe {
}

// Qt apps will be crashed if observe.
// See https://bugreports.qt.io/browse/QTBUG-49907
if (axNotifierPreferencesModel.disabledInQtApps) {
if ([[[self.runningApplication bundleIdentifier] lowercaseString] hasPrefix:@"com.buhldata."] ||
[[self.runningApplication bundleIdentifier] hasPrefix:@"org.virtualbox."] ||
[[self.runningApplication bundleIdentifier] isEqualToString:@"org.lyx.lyx"] ||
[[[self.runningApplication bundleIdentifier] lowercaseString] isEqualToString:@"org.wireshark.wireshark"] ||
false) {
observable = NO;
}
Expand Down

0 comments on commit 9b8ed20

Please sign in to comment.