Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Oct 6, 2023
1 parent 0cfcd75 commit ea30401
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/props/AvaloniaEdit.TextMate.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="OneWare.AvaloniaEdit.TextMate" Version="11.0.2-beta" />
<PackageReference Include="OneWare.AvaloniaEdit.TextMate" Version="11.0.4.1-beta" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion build/props/AvaloniaEdit.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="OneWare.AvaloniaEdit" Version="11.0.2-beta" />
<PackageReference Include="OneWare.AvaloniaEdit" Version="11.0.4.1-beta" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/Markdown.Avalonia
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ await LoadPackageRepositoryAsync(

private async Task LoadPackageRepositoryAsync(string url, CancellationToken cancellationToken)
{
var repositoryString = await _httpService.DownloadTextAsync(url,default, cancellationToken);
var repositoryString = await _httpService.DownloadTextAsync(url,TimeSpan.FromSeconds(1), cancellationToken);

try
{
Expand Down
1 change: 1 addition & 0 deletions src/OneWare.Shared/EditorExtensions/ExtendedTextEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public ExtendedTextEditor()

Options.AllowScrollBelowDocument = true;
Options.ConvertTabsToSpaces = true;
Options.AllowToggleOverstrikeMode = true;

TextArea.TextView.LinkTextUnderline = true;
TextArea.RightClickMovesCaret = true;
Expand Down

0 comments on commit ea30401

Please sign in to comment.