From ac1c588d7dc2fe5a71b31ca08b2a29e9fdee217e Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 3 Apr 2019 20:32:46 +0200 Subject: [PATCH] in creative menu, animations and history are now separate --- menus.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/menus.cpp b/menus.cpp index 9ee3e987..cf637143 100644 --- a/menus.cpp +++ b/menus.cpp @@ -450,9 +450,12 @@ void showCreative() { dialog::addItem(XLAT("screenshots"), 's'); dialog::add_action_push(shot::menu); - dialog::addBoolItem(XLAT("animations/history"), anims::any_on(), 'a'); + dialog::addBoolItem(XLAT("animations"), anims::any_on(), 'a'); dialog::add_action_push(anims::show); + dialog::addBoolItem(XLAT("history mode"), conformal::on || conformal::includeHistory, 'h'); + dialog::add_action_push(conformal::history_menu); + #if CAP_TEXTURE if(DIM == 2) { dialog::addBoolItem(XLAT("texture mode"), texture::config.tstate == texture::tsActive, 't');