mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-26 16:09:35 -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.Controls 2.0
|
||||
import QtGraphicalEffects 1.0
|
||||
import org.retroshare.qml_components.LibresapiLocalClient 1.0
|
||||
import "URI.js" as UriJs
|
||||
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
|
||||
{
|
||||
id: stackView
|
||||
anchors.fill: parent
|
||||
anchors.top: toolBar.bottom
|
||||
anchors.topMargin: 5
|
||||
focus: true
|
||||
onCurrentItemChanged:
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user