File tree 2 files changed +7
-1
lines changed
src/UniGetUI/Controls/OperationWidgets
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ protected string[] RawProcessOutput
130
130
}
131
131
}
132
132
133
- private readonly ContentDialog OutputDialog = new ( ) ;
133
+ protected readonly ContentDialog OutputDialog = new ( ) ;
134
134
private readonly ScrollViewer LiveOutputScrollBar = new ( ) ;
135
135
private readonly RichTextBlock LiveOutputTextBlock = new ( ) ;
136
136
Original file line number Diff line number Diff line change @@ -46,6 +46,12 @@ public PackageOperation(
46
46
{
47
47
throw new NullReferenceException ( "ONGOING_PROGRESS_STRING must be set to a non-null value in the Initialize method" ) ;
48
48
}
49
+
50
+ OutputDialog . SecondaryButtonText = CoreTools . Translate ( "Package details" ) ;
51
+ OutputDialog . SecondaryButtonClick += ( _ , _ ) =>
52
+ {
53
+ DialogHelper . ShowPackageDetails ( Package , Role ) ;
54
+ } ;
49
55
}
50
56
51
57
public PackageOperation (
You can’t perform that action at this time.
0 commit comments