Skip to content

Commit

Permalink
fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kikipoulet committed Nov 27, 2024
1 parent 5a09dea commit 7254178
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions SukiUI.Demo/Features/Playground/PlaygroundView.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,7 @@ protected override void OnApplyTemplate(TemplateAppliedEventArgs e)
_textEditor.Text = XamlData.PlaygroundStartingCode;
_textEditor.TextArea.IndentationStrategy = new CSharpIndentationStrategy(_textEditor.Options);
_textEditor.TextArea.RightClickMovesCaret = true;


_renderButton = this.FindControl<Button>("RenderButton")!;
_renderButton.Click += OnRenderClicked;
_clearButton = this.FindControl<Button>("ClearButton")!;

OnBaseThemeChanged(Application.Current!.ActualThemeVariant);
SukiTheme.GetInstance().OnBaseThemeChanged += OnBaseThemeChanged;


}

private void OnClearClicked(object? sender, RoutedEventArgs e)
Expand Down

0 comments on commit 7254178

Please sign in to comment.