Skip to content

Commit 660f377

Browse files
authored
Add files via upload
1 parent eaea129 commit 660f377

23 files changed

+335
-188
lines changed

AHK Visual 2.0.exe

50 KB
Binary file not shown.

Helper.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,14 @@ public static void CheckBoxChecker(CheckBox cb, TextBox tb, char character)
2525
}
2626
}
2727

28-
public static void Indent(TextBox tb, bool indent)
28+
public static void Indent(TextBox tb, int activeLoops, bool indent)
2929
{
3030
if(indent)
3131
{
32-
tb.AppendText(" ");
32+
for (int i = 0; i < activeLoops; i++)
33+
{
34+
tb.AppendText(" ");
35+
}
3336
}
3437
}
3538

@@ -92,7 +95,7 @@ public static void WriteToBox(CheckBox insertCheck, CheckBox newLineCheck, Check
9295
}
9396
else
9497
{
95-
textBox.AppendText(toPut);
98+
textBox.AppendText(sb.ToString());
9699
}
97100
}
98101

Main.Designer.cs

Lines changed: 142 additions & 123 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)