@@ -211,10 +211,10 @@ private EditorSettings()
211211 _advancedSettings = new List < ISettingViewModel > ( )
212212 {
213213 new ProxySettingViewModel < double > (
214- ( ) => Instance . HandleRightClickAfterPanningThreshold ,
215- val => Instance . HandleRightClickAfterPanningThreshold = val ,
216- "Disable context menu after panning : " ,
217- "Disable after mouse moved this far" ) ,
214+ ( ) => Instance . MouseActionSuppressionThreshold ,
215+ val => Instance . MouseActionSuppressionThreshold = val ,
216+ "Context menu suppression threshold : " ,
217+ "Disable context menu after mouse moved this far" ) ,
218218 new ProxySettingViewModel < double > (
219219 ( ) => Instance . AutoPanningTickRate ,
220220 val => Instance . AutoPanningTickRate = val ,
@@ -585,10 +585,10 @@ public GroupingMovementMode GroupingNodeMovement
585585
586586 #region Advanced settings
587587
588- public double HandleRightClickAfterPanningThreshold
588+ public double MouseActionSuppressionThreshold
589589 {
590- get => NodifyEditor . HandleRightClickAfterPanningThreshold ;
591- set => NodifyEditor . HandleRightClickAfterPanningThreshold = value ;
590+ get => NodifyEditor . MouseActionSuppressionThreshold ;
591+ set => NodifyEditor . MouseActionSuppressionThreshold = value ;
592592 }
593593
594594 public double AutoPanningTickRate
0 commit comments