1
0
Fork 0

Fix volumeslider missing enums import.

This commit is contained in:
namedkitten 2020-05-02 12:35:56 +01:00
parent bee363680b
commit 2dab4f4422
2 changed files with 2 additions and 1 deletions

View file

@ -18,7 +18,7 @@ Control {
contentItem: Image { contentItem: Image {
id: buttonImage id: buttonImage
smooth: true smooth: false
fillMode: Image.PreserveAspectFit fillMode: Image.PreserveAspectFit
sourceSize.height: Math.floor(root.parent.height / (appearance.themeName == "Niconico" ? 1.8 : 1.25)) sourceSize.height: Math.floor(root.parent.height / (appearance.themeName == "Niconico" ? 1.8 : 1.25))
sourceSize.width: Math.floor(root.parent.height / (appearance.themeName == "Niconico" ? 1.8 : 1.25)) sourceSize.width: Math.floor(root.parent.height / (appearance.themeName == "Niconico" ? 1.8 : 1.25))

View file

@ -1,5 +1,6 @@
import QtQuick 2.0 import QtQuick 2.0
import QtQuick.Controls 2.3 import QtQuick.Controls 2.3
import player 1.0
Slider { Slider {
id: volumeBar id: volumeBar