in creative menu, animations and history are now separate

This commit is contained in:
Zeno Rogue 2019-04-03 20:32:46 +02:00
parent 6b91dc2d7d
commit ac1c588d7d
1 changed files with 4 additions and 1 deletions

View File

@ -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');