mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 14:25:05 +08:00
Move export/save options to bottom of menu
This commit is contained in:
parent
20359c90bc
commit
fb34ee94c2
@ -997,14 +997,14 @@ namespace osu.Game.Screens.Edit
|
|||||||
|
|
||||||
private List<MenuItem> createFileMenuItems() => new List<MenuItem>
|
private List<MenuItem> createFileMenuItems() => new List<MenuItem>
|
||||||
{
|
{
|
||||||
new EditorMenuItem(WebCommonStrings.ButtonsSave, MenuItemType.Standard, () => Save()),
|
|
||||||
createExportMenu(),
|
|
||||||
new EditorMenuItemSpacer(),
|
|
||||||
createDifficultyCreationMenu(),
|
createDifficultyCreationMenu(),
|
||||||
createDifficultySwitchMenu(),
|
createDifficultySwitchMenu(),
|
||||||
new EditorMenuItemSpacer(),
|
new EditorMenuItemSpacer(),
|
||||||
new EditorMenuItem(EditorStrings.DeleteDifficulty, MenuItemType.Standard, deleteDifficulty) { Action = { Disabled = Beatmap.Value.BeatmapSetInfo.Beatmaps.Count < 2 } },
|
new EditorMenuItem(EditorStrings.DeleteDifficulty, MenuItemType.Standard, deleteDifficulty) { Action = { Disabled = Beatmap.Value.BeatmapSetInfo.Beatmaps.Count < 2 } },
|
||||||
new EditorMenuItemSpacer(),
|
new EditorMenuItemSpacer(),
|
||||||
|
new EditorMenuItem(WebCommonStrings.ButtonsSave, MenuItemType.Standard, () => Save()),
|
||||||
|
createExportMenu(),
|
||||||
|
new EditorMenuItemSpacer(),
|
||||||
new EditorMenuItem(CommonStrings.Exit, MenuItemType.Standard, this.Exit)
|
new EditorMenuItem(CommonStrings.Exit, MenuItemType.Standard, this.Exit)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user