aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/MindBlow.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.WinForms/Applications/MindBlow.cs')
-rw-r--r--ShiftOS.WinForms/Applications/MindBlow.cs12
1 files changed, 11 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/MindBlow.cs b/ShiftOS.WinForms/Applications/MindBlow.cs
index 0f0df80..7cd2a8f 100644
--- a/ShiftOS.WinForms/Applications/MindBlow.cs
+++ b/ShiftOS.WinForms/Applications/MindBlow.cs
@@ -35,7 +35,17 @@ namespace ShiftOS.WinForms.Applications
public override long Length => box.Text.Length;
- public override long Position { get => Length; set => throw new NotImplementedException(); }
+ public override long Position
+ {
+ get
+ {
+ return Length;
+ }
+ set
+ {
+ //nothing
+ }
+ }
public override void Flush()
{