Skip to content

Commit

Permalink
Fix compile failures
Browse files Browse the repository at this point in the history
  • Loading branch information
bdach committed May 31, 2024
1 parent 5dfeaa3 commit cb72630
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game/Overlays/Dialog/DangerousActionDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ public abstract partial class DangerousActionDialog : PopupDialog

protected DangerousActionDialog()
{
HeaderText = DialogStrings.DialogCautionHeader;
HeaderText = DialogStrings.Caution;

Icon = FontAwesome.Regular.TrashAlt;

Buttons = new PopupDialogButton[]
{
new PopupDialogDangerousButton
{
Text = DialogStrings.DialogConfirm,
Text = DialogStrings.Confirm,
Action = () => DangerousAction?.Invoke()
},
new PopupDialogCancelButton
Expand Down

0 comments on commit cb72630

Please sign in to comment.