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
dee5fcf1
Commit
dee5fcf1
authored
Jun 11, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: display the number of tracks
parent
4962f702
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
modules/gui/qt4/components/info_panels.cpp
modules/gui/qt4/components/info_panels.cpp
+3
-0
No files found.
modules/gui/qt4/components/info_panels.cpp
View file @
dee5fcf1
...
...
@@ -231,6 +231,7 @@ void MetaPanel::update( input_item_t *p_item )
UPDATE_META
(
Date
,
date_text
);
UPDATE_META
(
TrackNum
,
seqnum_text
);
UPDATE_META
(
TrackTotal
,
seqtot_text
);
// UPDATE_META( Setting, setting_text );
// UPDATE_META_INT( Rating, rating_text );
...
...
@@ -280,6 +281,7 @@ void MetaPanel::saveMeta()
input_item_SetAlbum
(
p_input
,
qtu
(
collection_text
->
text
()
)
);
input_item_SetGenre
(
p_input
,
qtu
(
genre_text
->
text
()
)
);
input_item_SetTrackNum
(
p_input
,
qtu
(
seqnum_text
->
text
()
)
);
input_item_SetTrackTotal
(
p_input
,
qtu
(
seqtot_text
->
text
()
)
);
input_item_SetDate
(
p_input
,
qtu
(
date_text
->
text
()
)
);
input_item_SetCopyright
(
p_input
,
qtu
(
copyright_text
->
text
()
)
);
...
...
@@ -322,6 +324,7 @@ void MetaPanel::clear()
copyright_text
->
clear
();
collection_text
->
clear
();
seqnum_text
->
clear
();
seqtot_text
->
clear
();
description_text
->
clear
();
date_text
->
clear
();
language_text
->
clear
();
...
...
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