diff --git a/interface/resources/qml/controls-uit/Table.qml b/interface/resources/qml/controls-uit/Table.qml index 45526428b2..5421ad5a9e 100644 --- a/interface/resources/qml/controls-uit/Table.qml +++ b/interface/resources/qml/controls-uit/Table.qml @@ -49,6 +49,7 @@ TableView { fill: parent; topMargin: tableView.headerVisible ? hifi.dimensions.tableHeaderHeight : 0 } + radius: hifi.dimensions.scrollbarHandleWidth/2 color: isLightColorScheme ? hifi.colors.tableScrollBackgroundLight : hifi.colors.tableScrollBackgroundDark } @@ -60,8 +61,8 @@ TableView { implicitWidth: hifi.dimensions.scrollbarHandleWidth Rectangle { anchors { - fill: parent - topMargin: 3 + fill: parent; + topMargin: 3; bottomMargin: 3 // "" leftMargin: 1 // Move it right rightMargin: -1 // "" diff --git a/interface/resources/qml/controls-uit/Tree.qml b/interface/resources/qml/controls-uit/Tree.qml index 7a9fdfb93f..6535049fd4 100644 --- a/interface/resources/qml/controls-uit/Tree.qml +++ b/interface/resources/qml/controls-uit/Tree.qml @@ -61,6 +61,7 @@ TreeView { fill: parent; topMargin: treeView.headerVisible ? hifi.dimensions.tableHeaderHeight : 0 } + radius: hifi.dimensions.scrollbarHandleWidth/2 color: isLightColorScheme ? hifi.colors.tableScrollBackgroundLight : hifi.colors.tableScrollBackgroundDark }