Commit 2296322d authored by Jacob Walser's avatar Jacob Walser

No mouseover on mobile

parent 100447e9
...@@ -87,7 +87,7 @@ Item { ...@@ -87,7 +87,7 @@ Item {
mipmap: true mipmap: true
anchors.right: parent.right anchors.right: parent.right
anchors.top: parent.top anchors.top: parent.top
visible: !isHidden && pipMouseArea.containsMouse visible: !isHidden && (ScreenTools.isMobile || pipMouseArea.containsMouse)
height: ScreenTools.defaultFontPixelHeight * 2.5 height: ScreenTools.defaultFontPixelHeight * 2.5
width: ScreenTools.defaultFontPixelHeight * 2.5 width: ScreenTools.defaultFontPixelHeight * 2.5
sourceSize.height: height sourceSize.height: height
...@@ -124,7 +124,7 @@ Item { ...@@ -124,7 +124,7 @@ Item {
fillMode: Image.PreserveAspectFit fillMode: Image.PreserveAspectFit
anchors.left: parent.left anchors.left: parent.left
anchors.bottom: parent.bottom anchors.bottom: parent.bottom
visible: !isHidden && pipMouseArea.containsMouse visible: !isHidden && (ScreenTools.isMobile || pipMouseArea.containsMouse)
height: ScreenTools.defaultFontPixelHeight * 2.5 height: ScreenTools.defaultFontPixelHeight * 2.5
width: ScreenTools.defaultFontPixelHeight * 2.5 width: ScreenTools.defaultFontPixelHeight * 2.5
sourceSize.height: height sourceSize.height: height
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment