Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
2eabe22e
Commit
2eabe22e
authored
May 20, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fixed 'Codec details pane does not work correctly', closes #2630
parent
b900a611
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
9 deletions
+12
-9
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+12
-9
No files found.
modules/gui/macosx/intf.m
View file @
2eabe22e
...
@@ -1565,6 +1565,17 @@ static void manage_cleanup( void * args )
...
@@ -1565,6 +1565,17 @@ static void manage_cleanup( void * args )
p_intf
->
p_sys
->
b_intf_update
=
true
;
p_intf
->
p_sys
->
b_intf_update
=
true
;
p_intf
->
p_sys
->
b_input_update
=
false
;
p_intf
->
p_sys
->
b_input_update
=
false
;
[
self
setupMenus
];
/* Make sure input menu is up to date */
[
self
setupMenus
];
/* Make sure input menu is up to date */
/* update our info-panel to reflect the new item, if we don't show
* the playlist or the selection is empty */
if
(
[
self
isPlaylistCollapsed
]
==
YES
)
{
playlist_t
*
p_playlist
=
pl_Hold
(
p_intf
);
PL_LOCK
;
[[
self
info
]
updatePanelWithItem
:
playlist_CurrentPlayingItem
(
p_playlist
)
->
p_input
];
PL_UNLOCK
;
pl_Release
(
p_intf
);
}
}
}
if
(
p_intf
->
p_sys
->
b_intf_update
)
if
(
p_intf
->
p_sys
->
b_intf_update
)
{
{
...
@@ -1594,15 +1605,6 @@ static void manage_cleanup( void * args )
...
@@ -1594,15 +1605,6 @@ static void manage_cleanup( void * args )
b_buffering
=
YES
;
b_buffering
=
YES
;
}
}
/* update our info-panel to reflect the new item, if we don't show
* the playlist or the selection is empty */
if
(
[
self
isPlaylistCollapsed
]
==
YES
)
{
PL_LOCK
;
[[
self
info
]
updatePanelWithItem
:
playlist_CurrentPlayingItem
(
p_playlist
)
->
p_input
];
PL_UNLOCK
;
}
/* seekable streams */
/* seekable streams */
b_seekable
=
var_GetBool
(
p_input
,
"can-seek"
);
b_seekable
=
var_GetBool
(
p_input
,
"can-seek"
);
...
@@ -1696,6 +1698,7 @@ static void manage_cleanup( void * args )
...
@@ -1696,6 +1698,7 @@ static void manage_cleanup( void * args )
[[
o_controls
voutView
]
updateTitle
];
[[
o_controls
voutView
]
updateTitle
];
[
o_playlist
updateRowSelection
];
[
o_playlist
updateRowSelection
];
p_intf
->
p_sys
->
b_current_title_update
=
FALSE
;
p_intf
->
p_sys
->
b_current_title_update
=
FALSE
;
}
}
...
...
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