Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit d034f0c

Browse files
committed
fixed typo
1 parent f8a6590 commit d034f0c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

UI/Components/EditorElement.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
<CheckBox x:Name="CompileBox" HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="2,0,0,0" Content="Compile" Foreground="{DynamicResource BlackColorBrush}" />
7575
<!-- <TextBlock Name="StatusLine_Work" HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="100,0,0,0" Text="HERE" Foreground="{DynamicResource BlackColorBrush}" IsHitTestVisible="False" /> -->
7676
<TextBlock Name="StatusLine_FontSize" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="2" Text="14 pt" Foreground="{DynamicResource BlackColorBrush}" IsHitTestVisible="False" />
77-
<TextBlock Name="StatusLine_Coloumn" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="2,2,100,2" Text="Col 0" Foreground="{DynamicResource BlackColorBrush}" IsHitTestVisible="False" />
77+
<TextBlock Name="StatusLine_Column" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="2,2,100,2" Text="Col 0" Foreground="{DynamicResource BlackColorBrush}" IsHitTestVisible="False" />
7878
<TextBlock Name="StatusLine_Line" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="2,2,200,2" Text="Ln 0" Foreground="{DynamicResource BlackColorBrush}" IsHitTestVisible="False" />
7979
<TextBlock Name="StatusLine_SelectionLength" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="2,2,300,2" Text="Len 0" Foreground="{DynamicResource BlackColorBrush}" />
8080
<Grid Name="ISAC_Grid" Opacity="0" HorizontalAlignment="Left" VerticalAlignment="Top" Height="Auto" IsHitTestVisible="False">

UI/Components/EditorElement.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -776,13 +776,13 @@ private void Editor_TextChanged(object sender, EventArgs e)
776776

777777
private void Caret_PositionChanged(object sender, EventArgs e)
778778
{
779-
StatusLine_Coloumn.Text = $"{Program.Translations.GetLanguage("ColAbb")} {editor.TextArea.Caret.Column}";
779+
StatusLine_Column.Text = $"{Program.Translations.GetLanguage("ColAbb")} {editor.TextArea.Caret.Column}";
780780
StatusLine_Line.Text = $"{Program.Translations.GetLanguage("LnAbb")} {editor.TextArea.Caret.Line}";
781781
EvaluateIntelliSense();
782+
782783
var result = bracketSearcher.SearchBracket(editor.Document, editor.CaretOffset);
783784
bracketHighlightRenderer.SetHighlight(result);
784785

785-
786786
if (!Program.OptionsObject.Program_DynamicISAC || Program.MainWindow == null)
787787
{
788788
return;
@@ -1187,7 +1187,7 @@ public void Language_Translate(bool Initial = false)
11871187
CompileBox.Content = Program.Translations.GetLanguage("Compile");
11881188
if (!Initial)
11891189
{
1190-
StatusLine_Coloumn.Text =
1190+
StatusLine_Column.Text =
11911191
$"{Program.Translations.GetLanguage("ColAbb")} {editor.TextArea.Caret.Column}";
11921192
StatusLine_Line.Text = $"{Program.Translations.GetLanguage("LnAbb")} {editor.TextArea.Caret.Line}";
11931193
StatusLine_FontSize.Text =

0 commit comments

Comments
 (0)