[Solved]Ask the Flickable don't hide the toolBar
-
How could I ask the Flickable don't hide the toolBar?
@
import QtQuick 2.1
import QtQuick.Controls 1.0
import QtQuick.Dialogs 1.0
import QtQuick.Layouts 1.0ApplicationWindow{
id: roottitle: "Color Correction" color: syspal.window width: 1450 height: 750 minimumHeight: 750 minimumWidth: 1400 SystemPalette {id: syspal} toolBar: ToolBar{ z: 1 } Flickable{ anchors.fill: parent contentHeight: image.height contentWidth: image.width Image{ id: image source: "file:///Users/yyyy/Downloads/1359170070532.jpg" } }
}
@
-
Thanks, I haven't noticed I could use clip to achieve it