[vlc-commits] [Git][videolan/vlc][master] macosx: Fix updating controls bar audio menu items
Steve Lhomme (@robUx4)
gitlab at videolan.org
Thu Jul 24 10:44:59 UTC 2025
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
59d32904 by Bob Moriasi at 2025-07-24T10:12:26+00:00
macosx: Fix updating controls bar audio menu items
- - - - -
1 changed file:
- modules/gui/macosx/menus/VLCMainMenu.m
Changes:
=====================================
modules/gui/macosx/menus/VLCMainMenu.m
=====================================
@@ -1809,6 +1809,12 @@ typedef NS_ENUM(NSInteger, VLCObjectType) {
p_object = [menuContent vlcObject];
var_Set(p_object, [menuContent variableName], [menuContent variableValue]);
+
+ if ([menuContent objectType] == VLCObjectTypeAout) {
+ dispatch_async(dispatch_get_main_queue(), ^{
+ [self rebuildAoutMenu];
+ });
+ }
}
}
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/59d32904f329635c70fe4e73038113d2f98f32d7
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/59d32904f329635c70fe4e73038113d2f98f32d7
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list