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
047e0b21
Commit
047e0b21
authored
Jan 22, 2008
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
call UpdateRate when rate changes, add myself to authors
parent
d0a33a8c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
modules/gui/qt4/components/playlist/playlist.cpp
modules/gui/qt4/components/playlist/playlist.cpp
+0
-2
modules/gui/qt4/components/playlist/playlist.hpp
modules/gui/qt4/components/playlist/playlist.hpp
+0
-1
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+2
-1
No files found.
modules/gui/qt4/components/playlist/playlist.cpp
View file @
047e0b21
...
...
@@ -108,13 +108,11 @@ void PlaylistWidget::setArt( QString url )
if
(
url
.
isNull
()
)
{
art
->
setPixmap
(
QPixmap
(
":/noart.png"
)
);
emit
artSet
(
url
);
}
else
if
(
prevArt
!=
url
)
{
art
->
setPixmap
(
QPixmap
(
url
)
);
prevArt
=
url
;
emit
artSet
(
url
);
}
}
...
...
modules/gui/qt4/components/playlist/playlist.hpp
View file @
047e0b21
...
...
@@ -59,7 +59,6 @@ private slots:
void
setArt
(
QString
);
signals:
void
rootChanged
(
int
);
void
artSet
(
QString
);
};
class
ArtLabel
:
public
QLabel
...
...
modules/gui/qt4/input_manager.cpp
View file @
047e0b21
...
...
@@ -5,6 +5,7 @@
* $Id$
*
* Authors: Clément Stenac <zorglub@videolan.org>
* Ilkka Ollakka <ileoo@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -226,7 +227,7 @@ void InputManager::customEvent( QEvent *event )
}
else
if
(
type
==
ItemRateChanged_Type
)
{
Update
Position
();
Update
Rate
();
}
else
if
(
type
==
ItemTitleChanged_Type
)
{
...
...
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