Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
2509ec68
Commit
2509ec68
authored
Dec 28, 2007
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* make sure our window titles change while switching items within playback (closes #1381)
parent
189bc59e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+4
-3
No files found.
modules/gui/macosx/intf.m
View file @
2509ec68
...
...
@@ -1202,7 +1202,7 @@ static VLCMain *_o_sharedMainInstance = nil;
vlc_bool_t
b_chapters
=
VLC_FALSE
;
playlist_t
*
p_playlist
=
pl_Yield
(
p_intf
);
/*
* \todo
fix i_size use */
/*
TODO:
fix i_size use */
b_plmul
=
p_playlist
->
items
.
i_size
>
1
;
p_input
=
p_playlist
->
p_input
;
...
...
@@ -1212,10 +1212,9 @@ static VLCMain *_o_sharedMainInstance = nil;
vlc_object_yield
(
p_input
);
b_seekable
=
var_GetBool
(
p_input
,
"seekable"
);
/* check w
ether slow/fast motion is possible
*/
/* check w
hether slow/fast motion is possible
*/
b_control
=
p_input
->
b_can_pace_control
;
/* chapters & titles */
//b_chapters = p_input->stream.i_area_nb > 1;
vlc_object_release
(
p_input
);
...
...
@@ -1236,6 +1235,8 @@ static VLCMain *_o_sharedMainInstance = nil;
[
o_embedded_window
setSeekable
:
b_seekable
];
p_intf
->
p_sys
->
b_current_title_update
=
VLC_TRUE
;
p_intf
->
p_sys
->
b_intf_update
=
VLC_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