https://bugs.kde.org/show_bug.cgi?id=482222

Jason <jason600.gro...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason600.gro...@gmail.com

--- Comment #16 from Jason <jason600.gro...@gmail.com> ---
For more information:

(BUG1) Dragging mode lockup
(BUG2) EditMode bug


Possible fix (BUG1) Dragging mode lockup

Source:
https://github.com/KDE/plasma-desktop/raw/master/containments/desktop/package/contents/ui/FolderView.qml
--------------------------------------------------------------------------------------
--- FolderView.qml      2024-06-25 11:14:10.000000000 -0600
+++ FolderView-patch.qml        2024-06-28 18:09:03.977260395 -0600
@@ -243,7 +243,8 @@
                 : (Qt.LeftButton | Qt.RightButton);
         }

-        hoverEnabled: true
+        hoverEnabled: false
+        // hoverEnabled: true

         onPressXChanged: {
             cPress = mapToItem(gridView.contentItem, pressX, pressY);
--------------------------------------------------------------------------------------

Possible fix (BUG2) EditMode bug     

Note: Touchscreen long press doesnt open EditMode. Other ways EditMode works,
for example context menu or key shortcuts.

Source:
https://github.com/KDE/plasma-desktop/raw/master/containments/desktop/package/contents/ui/main.qml
--------------------------------------------------------------------------------------
--- main.qml    2024-06-25 11:14:10.000000000 -0600
+++ main-patch.qml      2024-06-28 17:50:03.305023347 -0600
@@ -309,7 +309,8 @@
             containmentItem: root
             editModeCondition: Plasmoid.immutable
                     ? ContainmentLayoutManager.AppletsLayout.Locked
-                    : ContainmentLayoutManager.AppletsLayout.AfterPressAndHold
+                    : ContainmentLayoutManager.AppletsLayout.Manual
+            //        :
ContainmentLayoutManager.AppletsLayout.AfterPressAndHold

             // Sets the containment in edit mode when we go in edit mode as
well
             onEditModeChanged: Plasmoid.containment.corona.editMode =
editMode;
@@ -327,7 +328,8 @@

                 editModeCondition: Plasmoid.immutable
                     ? ContainmentLayoutManager.ItemContainer.Locked
-                    : ContainmentLayoutManager.ItemContainer.AfterPressAndHold
+                    : ContainmentLayoutManager.ItemContainer.Manual
+                //    :
ContainmentLayoutManager.ItemContainer.AfterPressAndHold

                 configOverlaySource: "ConfigOverlay.qml"
--------------------------------------------------------------------------------------

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to