mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-28 00:49:28 -05:00
Add shadow to the toolbar
This commit is contained in:
parent
9f52ffb677
commit
785bd65c74
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
import QtQuick 2.1
|
import QtQuick 2.1
|
||||||
import QtQuick.Controls 2.0
|
import QtQuick.Controls 2.0
|
||||||
|
import QtGraphicalEffects 1.0
|
||||||
import org.retroshare.qml_components.LibresapiLocalClient 1.0
|
import org.retroshare.qml_components.LibresapiLocalClient 1.0
|
||||||
import "URI.js" as UriJs
|
import "URI.js" as UriJs
|
||||||
import "." //Needed for TokensManager and ClipboardWrapper singleton
|
import "." //Needed for TokensManager and ClipboardWrapper singleton
|
||||||
@ -221,10 +222,23 @@ ApplicationWindow
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DropShadow
|
||||||
|
{
|
||||||
|
anchors.fill: toolBar
|
||||||
|
horizontalOffset: 0
|
||||||
|
verticalOffset: 1
|
||||||
|
radius: 12
|
||||||
|
samples: 25
|
||||||
|
color: "#80000000"
|
||||||
|
source: toolBar
|
||||||
|
}
|
||||||
|
|
||||||
StackView
|
StackView
|
||||||
{
|
{
|
||||||
id: stackView
|
id: stackView
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
anchors.top: toolBar.bottom
|
||||||
|
anchors.topMargin: 5
|
||||||
focus: true
|
focus: true
|
||||||
onCurrentItemChanged:
|
onCurrentItemChanged:
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user