From bdbe0607f556d421e1758aba2cffedd0a2091051 Mon Sep 17 00:00:00 2001 From: Alain Date: Sat, 11 May 2024 05:34:25 -0500 Subject: [PATCH] fix #1268 --- src/Layouts/ItemRow.vala | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Layouts/ItemRow.vala b/src/Layouts/ItemRow.vala index c91be50aa..2be6af193 100644 --- a/src/Layouts/ItemRow.vala +++ b/src/Layouts/ItemRow.vala @@ -748,7 +748,10 @@ public class Layouts.ItemRow : Layouts.ItemBase { labels_summary.check_revealer (); } - build_drag_and_drop (); + if (drag_enabled) { + build_drag_and_drop (); + } + select_checkbutton.active = false; } });