From a539122cbcd474fa8a0adcec63d90835c6bdea2a Mon Sep 17 00:00:00 2001 From: Ales Kutsepau Date: Tue, 24 Mar 2026 14:18:37 +0100 Subject: [PATCH] introduced quick fixes for the EaElements tableview --- src/EasyApp/Gui/Components/TableView.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/EasyApp/Gui/Components/TableView.qml b/src/EasyApp/Gui/Components/TableView.qml index c3d538e..6926222 100644 --- a/src/EasyApp/Gui/Components/TableView.qml +++ b/src/EasyApp/Gui/Components/TableView.qml @@ -53,10 +53,14 @@ ListView { // Empty content rows //delegate: EaComponents.TableViewDelegate {} + // fixes an issue of clicks not registering right after scroll + pressDelay: 10 + // Table border Rectangle { anchors.fill: listView color: "transparent" + antialiasing: true border.color: EaStyle.Colors.appBarComboBoxBorder Behavior on border.color { EaAnimations.ThemeChange {} } }