Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Amarok
Commits
0855efca
Commit
0855efca
authored
Mar 18, 2012
by
Sam Lade
Browse files
Prevent crash on very quick drag and release of tracks
BUG:295275 FIXED-IN:2.6 REVIEW:295275
parent
438d6c11
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
0855efca
...
...
@@ -45,6 +45,7 @@ Version 2.6-Beta 1
"1.2 GB free" is shown instead of "85% used"; thicker capacity bar.
BUGFIXES:
* Prevent crash on very quick drag and release of tracks. (BR 295275)
* Prevent occasional tag corruption on multi-byte UTF8 characters in tags.
* Do not double-transcode tracks when importing from an audio CD. (BR 263775)
* Fix resulting filetype when copying a track from Jamendo. (BR 296000)
...
...
src/AmarokMimeData.cpp
View file @
0855efca
...
...
@@ -125,7 +125,7 @@ AmarokMimeData::tracks() const
{
while
(
d
->
completedQueries
<
d
->
queryMakers
.
count
()
)
{
QCoreApplication
::
instance
()
->
processEvents
(
QEventLoop
::
All
Events
);
QCoreApplication
::
instance
()
->
processEvents
(
QEventLoop
::
ExcludeUserInput
Events
);
}
Meta
::
TrackList
result
=
d
->
tracks
;
foreach
(
Collections
::
QueryMaker
*
qm
,
d
->
queryMakers
)
...
...
Write
Preview
Supports
Markdown
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