summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cmd-keys.h
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-25 23:38:15 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-25 23:48:48 +0100
commit54a63221928a458a570b2ec0d0c3d14b8f76d0f8 (patch)
tree9d30c7ac0d908f3503063b7bda05328573e41099 /crawl-ref/source/cmd-keys.h
parent9e9ae1496dbae54389cb290cf8aa91ec0d551b4e (diff)
downloadcrawl-ref-54a63221928a458a570b2ec0d0c3d14b8f76d0f8.tar.gz
crawl-ref-54a63221928a458a570b2ec0d0c3d14b8f76d0f8.zip
Allow leaving the doll edit screen without saving any changes.
Distinguish between saving and quitting as it's really annoying to find that you can't undo your experimentation and that leaving the screen actually saves them.
Diffstat (limited to 'crawl-ref/source/cmd-keys.h')
-rw-r--r--crawl-ref/source/cmd-keys.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/cmd-keys.h b/crawl-ref/source/cmd-keys.h
index 50eb1aacbc..a14d36df99 100644
--- a/crawl-ref/source/cmd-keys.h
+++ b/crawl-ref/source/cmd-keys.h
@@ -350,9 +350,10 @@
{CONTROL('E'), CMD_DOLL_TOGGLE_EQUIP_ALL},
{CONTROL('D'), CMD_DOLL_JOB_DEFAULT},
{'m', CMD_DOLL_CHANGE_MODE},
-{ESCAPE, CMD_DOLL_QUIT},
+{ESCAPE, CMD_DOLL_SAVE},
+{CONTROL('S'), CMD_DOLL_SAVE},
{'q', CMD_DOLL_QUIT},
-{CONTROL('S'), CMD_DOLL_QUIT},
+{CONTROL('Q'), CMD_DOLL_QUIT},
#endif
{'\0', CMD_NO_CMD}