| Summary: | I can move the slider while listening to a radio stream | ||
|---|---|---|---|
| Product: | [Applications] amarok | Reporter: | Unknown <null> |
| Component: | general | Assignee: | Amarok Bugs <amarok-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Unknown
2007-01-20 18:51:19 UTC
SVN commit 627871 by aumuell:
disable seeking in streams
BUG: 140364
M +3 -0 ChangeLog
M +5 -2 src/enginecontroller.cpp
--- trunk/extragear/multimedia/amarok/ChangeLog #627870:627871
@@ -101,6 +101,9 @@
* Amarok now saves playlists with relative paths by default.
BUGFIXES:
+ * Disable seeking in streams. (BR 140364)
+ * With the default theme, the playlist browser info pane would not show
+ the horizontal scrollbar if necessary. (BR 134221)
* Some .rm files would make Amarok crash. (BR 137695)
* Remember 'User Cover Art for Folder Icons' when organizing files.
(BR 138582)
--- trunk/extragear/multimedia/amarok/src/enginecontroller.cpp #627870:627871
@@ -536,8 +536,11 @@
void EngineController::seek( int ms ) //SLOT
{
- trackPositionChangedNotify( ms, true ); /* User seek */
- engine()->seek( ms );
+ if( bundle().length() > 0 )
+ {
+ trackPositionChangedNotify( ms, true ); /* User seek */
+ engine()->seek( ms );
+ }
}
|