This repository was archived by the owner on Nov 27, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ namespace OnnxStack.UI.Views
25
25
/// </summary>
26
26
public partial class ImageInpaint : UserControl , INavigatable , INotifyPropertyChanged
27
27
{
28
- private readonly ILogger < TextToImageView > _logger ;
28
+ private readonly ILogger < ImageInpaint > _logger ;
29
29
private readonly IStableDiffusionService _stableDiffusionService ;
30
30
31
31
private bool _hasResult ;
@@ -52,7 +52,7 @@ public ImageInpaint()
52
52
{
53
53
if ( ! DesignerProperties . GetIsInDesignMode ( this ) )
54
54
{
55
- _logger = App . GetService < ILogger < TextToImageView > > ( ) ;
55
+ _logger = App . GetService < ILogger < ImageInpaint > > ( ) ;
56
56
_stableDiffusionService = App . GetService < IStableDiffusionService > ( ) ;
57
57
}
58
58
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ namespace OnnxStack.UI.Views
26
26
/// </summary>
27
27
public partial class ImageToImage : UserControl , INavigatable , INotifyPropertyChanged
28
28
{
29
- private readonly ILogger < TextToImageView > _logger ;
29
+ private readonly ILogger < ImageToImage > _logger ;
30
30
private readonly IStableDiffusionService _stableDiffusionService ;
31
31
32
32
private bool _hasResult ;
@@ -51,7 +51,7 @@ public ImageToImage()
51
51
{
52
52
if ( ! DesignerProperties . GetIsInDesignMode ( this ) )
53
53
{
54
- _logger = App . GetService < ILogger < TextToImageView > > ( ) ;
54
+ _logger = App . GetService < ILogger < ImageToImage > > ( ) ;
55
55
_stableDiffusionService = App . GetService < IStableDiffusionService > ( ) ;
56
56
}
57
57
You can’t perform that action at this time.
0 commit comments