Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
3da0fd7e
Commit
3da0fd7e
authored
Feb 25, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: don't show the menu button if there is only 1 chapter and 1 title
parent
cec40cfa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+4
-4
No files found.
modules/gui/qt4/input_manager.cpp
View file @
3da0fd7e
...
...
@@ -396,6 +396,7 @@ void InputManager::UpdateNavigation()
{
/* Update navigation status */
vlc_value_t
val
;
val
.
i_int
=
0
;
vlc_value_t
val2
;
val2
.
i_int
=
0
;
if
(
hasInput
()
)
var_Change
(
p_input
,
"title"
,
VLC_VAR_CHOICESCOUNT
,
&
val
,
NULL
);
...
...
@@ -405,10 +406,9 @@ void InputManager::UpdateNavigation()
emit
titleChanged
(
true
);
msg_Dbg
(
p_intf
,
"Title %i"
,
val
.
i_int
);
/* p_input != NULL since val.i_int != 0 */
val
.
i_int
=
0
;
var_Change
(
p_input
,
"chapter"
,
VLC_VAR_CHOICESCOUNT
,
&
val
,
NULL
);
emit
chapterChanged
(
(
val
.
i_int
>
0
)
);
msg_Dbg
(
p_intf
,
"Chapter: %i"
,
val
.
i_int
);
var_Change
(
p_input
,
"chapter"
,
VLC_VAR_CHOICESCOUNT
,
&
val2
,
NULL
);
emit
chapterChanged
(
(
val2
.
i_int
>
1
)
||
(
val2
.
i_int
>
0
&&
val
.
i_int
>
1
)
);
msg_Dbg
(
p_intf
,
"Chapter: %i"
,
val2
.
i_int
);
}
else
emit
titleChanged
(
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