mirror of https://github.com/ppy/osu
Minor reshuffling / recolouring
This commit is contained in:
parent
a650a5ec83
commit
3f3bfb1ffb
|
@ -32,7 +32,7 @@ public StorageErrorDialog(OsuStorage storage, OsuStorageError error)
|
||||||
|
|
||||||
buttons.AddRange(new PopupDialogButton[]
|
buttons.AddRange(new PopupDialogButton[]
|
||||||
{
|
{
|
||||||
new PopupDialogOkButton
|
new PopupDialogCancelButton
|
||||||
{
|
{
|
||||||
Text = "Try again",
|
Text = "Try again",
|
||||||
Action = () =>
|
Action = () =>
|
||||||
|
@ -41,15 +41,15 @@ public StorageErrorDialog(OsuStorage storage, OsuStorageError error)
|
||||||
dialogOverlay.Push(new StorageErrorDialog(storage, nextError));
|
dialogOverlay.Push(new StorageErrorDialog(storage, nextError));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
new PopupDialogCancelButton
|
||||||
|
{
|
||||||
|
Text = "Use default location until restart",
|
||||||
|
},
|
||||||
new PopupDialogOkButton
|
new PopupDialogOkButton
|
||||||
{
|
{
|
||||||
Text = "Reset to default location",
|
Text = "Reset to default location",
|
||||||
Action = storage.ResetCustomStoragePath
|
Action = storage.ResetCustomStoragePath
|
||||||
},
|
},
|
||||||
new PopupDialogCancelButton
|
|
||||||
{
|
|
||||||
Text = "Use default location for this session",
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue