feat: disable cursor switch on text inputs

This commit is contained in:
tux
2025-07-01 13:10:41 +05:30
parent 7289b716f7
commit 6596db6775

View File

@@ -2,10 +2,16 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="highminded.App"
RequestedThemeVariant="Default">
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
<Application.Styles>
<FluentTheme />
<StyleInclude Source="avares://IconPacks.Avalonia/Icons.axaml" />
<Style Selector="TextBox /template/ TextPresenter">
<Setter Property="Cursor" Value="Arrow" />
<Setter Property="Background" Value="Transparent" />
</Style>
</Application.Styles>
</Application>