We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de8263a commit 8cb7efcCopy full SHA for 8cb7efc
RegexDialog/SearchableTextControl.cs
@@ -30,7 +30,7 @@ public class SearchableTextControl : Control
30
private TextBlock displayTextBlock;
31
private TextPointer StartSelectPosition;
32
private TextPointer EndSelectPosition;
33
- private bool isSelecting = false;
+ private bool isSelecting;
34
35
public string SelectedText = "";
36
@@ -59,7 +59,7 @@ protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
59
60
protected override void OnMouseMove(MouseEventArgs e)
61
{
62
- if(isSelecting && displayTextBlock != null && IsSelectable)
+ if (isSelecting && displayTextBlock != null && IsSelectable)
63
64
base.OnMouseMove(e);
65
SelectTextFromMouseAction(e);
0 commit comments