EffectComposer: Enable mouse wheel scroll for the uniforms view

Task-number: QDS-14246
Change-Id: I605a5ca5ee5e4763b897486183b46adbb2ca4e53
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
This commit is contained in:
Ali Kianian
2024-12-02 12:18:43 +02:00
parent ec13696749
commit 653b9ba215

View File

@@ -62,7 +62,7 @@ ColumnLayout {
columnSpacing: -StudioTheme.Values.border
rowSpacing: -StudioTheme.Values.border
clip: true
interactive: false
interactive: true
selectionMode: TableView.SingleSelection
selectionBehavior: TableView.SelectRows
selectionModel: ItemSelectionModel {}
@@ -140,7 +140,7 @@ ColumnLayout {
visible: !tableView.hideHorizontalScrollBar
show: (hoverHandler.hovered || tableView.focus || tableView.adsFocus
show: (hoverHandler.hovered || tableView.focus
|| horizontalScrollBar.inUse || horizontalScrollBar.otherInUse)
&& horizontalScrollBar.isNeeded
otherInUse: verticalScrollBar.inUse
@@ -158,8 +158,8 @@ ColumnLayout {
visible: !tableView.hideVerticalScrollBar
show: (hoverHandler.hovered || tableView.focus || tableView.adsFocus
|| horizontalScrollBar.inUse || horizontalScrollBar.otherInUse)
show: (hoverHandler.hovered || tableView.focus
|| verticalScrollBar.inUse || verticalScrollBar.otherInUse)
&& verticalScrollBar.isNeeded
otherInUse: horizontalScrollBar.inUse
}