d20ab5a348
Use proper layouts and get rid of multiple annoyances/bugs like text-wrapping randomly happening in the middle of words, background rectangles being too large, a certain binding loop, etc
17 lines
353 B
QML
17 lines
353 B
QML
import QtQuick 2.12
|
|
import QtQuick.Layouts 1.12
|
|
import QtAV 1.7
|
|
import "../../Base"
|
|
import "../../Base/MediaPlayer"
|
|
import "../../utils.js" as Utils
|
|
|
|
AudioPlayer {
|
|
id: audio
|
|
|
|
HoverHandler {
|
|
onHoveredChanged:
|
|
eventDelegate.hoveredMediaTypeUrl =
|
|
hovered ? [EventDelegate.Media.Audio, audio.source] : []
|
|
}
|
|
}
|