diff --git a/Changes.md b/Changes.md index 40a9b66..a19bcc0 100644 --- a/Changes.md +++ b/Changes.md @@ -1,6 +1,6 @@ # Changes -## v0.7.0 (TBD) +## v0.7.0 (June 20 2021) This is the first release of the game where the "free version" drifts meaningfully away from the "full version". Free versions of the game will show the label diff --git a/pkg/editor_ui_menubar.go b/pkg/editor_ui_menubar.go index 595b164..d6fa5fe 100644 --- a/pkg/editor_ui_menubar.go +++ b/pkg/editor_ui_menubar.go @@ -169,12 +169,7 @@ func (u *EditorUI) SetupMenuBar(d *Doodle) *ui.MenuBar { toolMenu.AddItem("Edit Palette", func() { u.OpenPaletteWindow() }) - if u.Scene.DrawingType == enum.LevelDrawing { - toolMenu.AddItemAccel("Doodads", "d", func() { - log.Info("Open the DoodadDropper") - u.doodadWindow.Show() - }) - } else if u.Scene.DrawingType == enum.DoodadDrawing { + if u.Scene.DrawingType == enum.DoodadDrawing { toolMenu.AddItem("Layers", func() { u.OpenLayersWindow() })