mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-15 10:48:33 +01:00
parent
d109b70898
commit
85b876d112
@ -59,7 +59,7 @@ class RemoveDuplicatesListener(SongInsertVetoListener):
|
||||
|
||||
def url_for_song(self, song):
|
||||
if not song.filename() == "":
|
||||
return song.filename() + ":" + str(song.beginning())
|
||||
return song.filename() + ":" + str(song.beginning_nanosec())
|
||||
else:
|
||||
return ""
|
||||
|
||||
|
@ -209,6 +209,7 @@ void PlaylistTabBar::timerEvent(QTimerEvent* e) {
|
||||
void PlaylistTabBar::dropEvent(QDropEvent* e) {
|
||||
if (drag_hover_tab_ == -1) {
|
||||
manager_->New(tr("Playlist"));
|
||||
setCurrentIndex(count() - 1);
|
||||
} else {
|
||||
setCurrentIndex(drag_hover_tab_);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user