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
70d1cb5f
Commit
70d1cb5f
authored
Sep 13, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always show something in the statusLabel, even if you don't have ANY metadata.
This will slow a few complaints from many people.
parent
038ee68f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
5 deletions
+15
-5
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+15
-5
No files found.
modules/gui/qt4/input_manager.cpp
View file @
70d1cb5f
...
...
@@ -305,6 +305,7 @@ void InputManager::UpdateMeta()
/* Update text, name and nowplaying */
QString
text
;
/* Try to get the Title, then the Name */
char
*
psz_name
=
input_item_GetTitle
(
input_GetItem
(
p_input
)
);
if
(
EMPTY_STR
(
psz_name
)
)
{
...
...
@@ -312,28 +313,37 @@ void InputManager::UpdateMeta()
psz_name
=
input_item_GetName
(
input_GetItem
(
p_input
)
);
}
/* Try to get the nowplaying */
char
*
psz_nowplaying
=
input_item_GetNowPlaying
(
input_GetItem
(
p_input
)
);
if
(
!
EMPTY_STR
(
psz_nowplaying
)
)
{
text
.
sprintf
(
"%s - %s"
,
psz_nowplaying
,
psz_name
);
}
else
else
/* Do it ourself */
{
char
*
psz_artist
=
input_item_GetArtist
(
input_GetItem
(
p_input
)
);
if
(
!
EMPTY_STR
(
psz_artist
)
)
{
text
.
sprintf
(
"%s - %s"
,
psz_artist
,
psz_name
);
}
else
{
text
.
sprintf
(
"%s"
,
psz_name
);
}
free
(
psz_artist
);
}
/* Free everything */
free
(
psz_name
);
free
(
psz_nowplaying
);
/* If we have Nothing */
if
(
text
.
isEmpty
()
)
{
psz_name
=
input_item_GetURI
(
input_GetItem
(
p_input
)
);
text
.
sprintf
(
"%s"
,
psz_name
);
text
=
text
.
remove
(
0
,
text
.
lastIndexOf
(
DIR_SEP
)
+
1
);
free
(
psz_name
);
}
if
(
old_name
!=
text
)
{
emit
nameChanged
(
text
);
...
...
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