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
733d4d79
Commit
733d4d79
authored
Jan 22, 2008
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Seems that title-callback weren't called afterall for dvd, should work
better now, thanks for j-b for spotting.
parent
12bbc5d5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+2
-0
No files found.
modules/gui/qt4/input_manager.cpp
View file @
733d4d79
...
@@ -224,6 +224,7 @@ void InputManager::customEvent( QEvent *event )
...
@@ -224,6 +224,7 @@ void InputManager::customEvent( QEvent *event )
else
if
(
type
==
ItemChanged_Type
)
else
if
(
type
==
ItemChanged_Type
)
{
{
UpdateMeta
();
UpdateMeta
();
UpdateTitle
();
}
}
else
if
(
type
==
ItemRateChanged_Type
)
else
if
(
type
==
ItemRateChanged_Type
)
{
{
...
@@ -255,6 +256,7 @@ void InputManager::UpdateTitle( void )
...
@@ -255,6 +256,7 @@ void InputManager::UpdateTitle( void )
/* Update navigation status */
/* Update navigation status */
vlc_value_t
val
;
val
.
i_int
=
0
;
vlc_value_t
val
;
val
.
i_int
=
0
;
var_Change
(
p_input
,
"title"
,
VLC_VAR_CHOICESCOUNT
,
&
val
,
NULL
);
var_Change
(
p_input
,
"title"
,
VLC_VAR_CHOICESCOUNT
,
&
val
,
NULL
);
msg_Dbg
(
p_intf
,
"updateTitle called"
);
if
(
val
.
i_int
>
0
)
if
(
val
.
i_int
>
0
)
{
{
val
.
i_int
=
0
;
val
.
i_int
=
0
;
...
...
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