Skip to content

Commit

Permalink
Fix bug causing asterisk to appear when a new file is created
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary-Rude committed Dec 20, 2021
1 parent bcb5ae3 commit c84189d
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 4 deletions.
Binary file not shown.
Binary file modified Text Editor Setup/Text Editor Setup-cache/cacheIndex.txt
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions Text Editor Setup/Text Editor Setup.aip
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
<ROW Property="ARPCOMMENTS" Value="This installer database contains the logic and data required to install [|ProductName]." ValueLocId="*"/>
<ROW Property="ARPPRODUCTICON" Value="icon72.exe" Type="8"/>
<ROW Property="Manufacturer" Value="Zach, Inc."/>
<ROW Property="ProductCode" Value="1033:{D01CB925-8853-458C-898A-1BBDA4315485} " Type="16"/>
<ROW Property="ProductCode" Value="1033:{AC04B2FD-458A-428D-A3DD-C2CFE72D7708} " Type="16"/>
<ROW Property="ProductLanguage" Value="1033"/>
<ROW Property="ProductName" Value="Text Editor"/>
<ROW Property="ProductVersion" Value="1.0.8" Type="32"/>
<ROW Property="ProductVersion" Value="1.0.9" Type="32"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND"/>
<ROW Property="UpgradeCode" Value="{6F659083-3442-43A7-8DA3-D7192D778487}"/>
<ROW Property="WindowsType9X" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
Expand Down Expand Up @@ -57,7 +57,7 @@
<ROW BootstrOptKey="GlobalOptions" DownloadFolder="[AppDataFolder][|Manufacturer]\[|ProductName]\prerequisites" Options="2"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.BuildComponent">
<ROW BuildKey="DefaultBuild" BuildName="DefaultBuild" BuildOrder="1" BuildType="0" PackageFileName="Text_Editor_1_0_8_Setup" Languages="en" InstallationType="4" UseLargeSchema="true"/>
<ROW BuildKey="DefaultBuild" BuildName="DefaultBuild" BuildOrder="1" BuildType="0" PackageFileName="Text_Editor_1_0_9_Setup" Languages="en" InstallationType="4" UseLargeSchema="true"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.DictionaryComponent">
<ROW Path="&lt;AI_DICTS&gt;ui.ail"/>
Expand Down
2 changes: 1 addition & 1 deletion Text Editor/AboutForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Text Editor/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public static void QuickReplace(RichTextBox rtb, String word, String word2)
private void menuItem2_Click(object sender, EventArgs e)
{
this.Text = "Untitled - Text Editor";
this.Text = this.Text.Replace("*", "");
path = string.Empty;
mainEditor.Clear();
}
Expand Down

0 comments on commit c84189d

Please sign in to comment.