Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Sep 24, 2024
1 parent c0d9c00 commit af891fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 0 additions & 5 deletions JL.Windows/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,10 @@ private bool IsSingleInstance()
private static void LogUnhandledException(object sender, UnhandledExceptionEventArgs args)
{
Utils.Logger.Fatal((Exception)args.ExceptionObject, "Unhandled exception");
//if (!args.IsTerminating)
//{
// Shutdown();
//}
}

private static void LogUnobservedTaskException(object? sender, UnobservedTaskExceptionEventArgs args)
{
Utils.Logger.Fatal(args.Exception, "Unobserved task exception");
// Shutdown();
}
}
8 changes: 7 additions & 1 deletion JL.Windows/GUI/PreferencesWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -1568,7 +1568,13 @@
</DockPanel>

<DockPanel>
<TextBlock HorizontalAlignment="Left" Text="Search URL" VerticalAlignment="Center" TextWrapping="Wrap" Style="{StaticResource TextBlockDefault}" />
<TextBlock HorizontalAlignment="Left"
Text="Search URL"
Cursor="Help"
ToolTip="The {SearchTerm} marker will be replaced with the text selected for searching"
VerticalAlignment="Center"
TextWrapping="Wrap"
Style="{StaticResource TextBlockDefault}" />
<TextBox x:Name="SearchUrlTextBox" HorizontalAlignment="Right" Width="300" MaxHeight="60" TextWrapping="Wrap" />
</DockPanel>

Expand Down

0 comments on commit af891fa

Please sign in to comment.