Changeset 52886 in vbox for trunk/src/VBox
- Timestamp:
- Sep 29, 2014 1:49:00 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineLogicFullscreen.cpp
r52752 r52886 864 864 AssertReturnVoid(userInfo.contains("BundleIdentifier")); 865 865 /* Skip other applications: */ 866 if (userInfo.value("BundleIdentifier") != "org.virtualbox.app.VirtualBox") 866 QStringList ourBundleIdentifiers; 867 ourBundleIdentifiers << "org.virtualbox.app.VirtualBox"; 868 ourBundleIdentifiers << "org.virtualbox.app.VirtualBoxVM"; 869 if (!ourBundleIdentifiers.contains(userInfo.value("BundleIdentifier"))) 867 870 return; 868 871
Note:
See TracChangeset
for help on using the changeset viewer.