fixed broken click selection in track-list component
This commit is contained in:
@@ -390,7 +390,10 @@ export class TrackList extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override updated(changed: Map<string, unknown>) {
|
override updated(changed: Map<string, unknown>) {
|
||||||
if (changed.has('columnWidths')) {
|
if (
|
||||||
|
changed.has('columnWidths') ||
|
||||||
|
changed.has('selectedTracks')
|
||||||
|
) {
|
||||||
this.virtualizer?.requestUpdate();
|
this.virtualizer?.requestUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user