2020-06-23 18:51:10 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import "../imports"
|
|
|
|
|
|
|
|
Rectangle {
|
2020-06-25 14:41:50 +00:00
|
|
|
implicitWidth: 1.2
|
2020-07-02 15:14:31 +00:00
|
|
|
color: SplitHandle.pressed ? Style.current.darkGrey
|
|
|
|
: (SplitHandle.hovered ? Qt.darker(Style.current.grey, 1.1) : Style.current.grey)
|
2020-06-23 18:51:10 +00:00
|
|
|
}
|