Index: sources/gui/qml/pages/treatment/sections/TreatmentFlowsComponent.qml =================================================================== diff -u -r36a488a3d29449ffedfe364d0031ed74d03c0ae0 -r23f8a6036e22f80c3c5fd2834a2980bb62d2a34d --- sources/gui/qml/pages/treatment/sections/TreatmentFlowsComponent.qml (.../TreatmentFlowsComponent.qml) (revision 36a488a3d29449ffedfe364d0031ed74d03c0ae0) +++ sources/gui/qml/pages/treatment/sections/TreatmentFlowsComponent.qml (.../TreatmentFlowsComponent.qml) (revision 23f8a6036e22f80c3c5fd2834a2980bb62d2a34d) @@ -1,7 +1,6 @@ // Qt import QtQuick 2.12 -import QtGraphicalEffects 1.12 // Project @@ -24,8 +23,8 @@ color : Colors.mainTreatmentLighterBlue radius : 5 - signal increment - signal decrement + signal increment() + signal decrement() Text { id: _title objectName: "title" @@ -118,15 +117,4 @@ color : "orange" horizontalAlignment : Text.AlignHCenter } - - layer.enabled : _root.dropShadowEnabled - layer.effect : DropShadow { id: _dropShadow - horizontalOffset: 3 - verticalOffset : 3 - radius : 3.0 - samples : 7 - color : "#50000000" - source : _root - anchors.fill : _root - } }