Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
268fc5d2
Commit
268fc5d2
authored
Apr 07, 2011
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: reflect intf-change modification
parent
71da61e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+1
-1
modules/gui/macosx/playlistinfo.m
modules/gui/macosx/playlistinfo.m
+1
-1
No files found.
modules/gui/macosx/intf.m
View file @
268fc5d2
...
...
@@ -473,7 +473,7 @@ static VLCMain *_o_sharedMainInstance = nil;
[
o_mi_double_window
setKeyEquivalent
:
[
self
VLCKeyToString
:
o_key
]];
[
o_mi_double_window
setKeyEquivalentModifierMask
:
[
self
VLCModifiersToCocoa
:
o_key
]];
var_Create
(
p_intf
,
"intf-change"
,
VLC_VAR_
BOOL
);
var_Create
(
p_intf
,
"intf-change"
,
VLC_VAR_
VOID
);
[
self
setSubmenusEnabled
:
FALSE
];
[
o_volumeslider
setEnabled
:
YES
];
...
...
modules/gui/macosx/playlistinfo.m
View file @
268fc5d2
...
...
@@ -386,7 +386,7 @@ static VLCInfo *_o_sharedInstance = nil;
playlist_t
*
p_playlist
=
pl_Get
(
VLCIntf
);
input_item_WriteMeta
(
VLC_OBJECT
(
p_playlist
),
p_item
);
var_SetBool
(
p_playlist
,
"intf-change"
,
true
);
var_SetBool
(
p_playlist
,
"intf-change"
);
[
self
updatePanelWithItem
:
p_item
];
[
o_saveMetaData_btn
setEnabled
:
NO
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment