Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-02-28 05:20:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-28 05:21:25 +0300
commite735894070ac3097628b36984a14654bf1c9bd57 (patch)
tree3967ea5b0b17e5786d485a53b901f0413d7fd40a /source/blender/windowmanager/intern/wm_operators.c
parentd7baf8e7e7c26bbd577abe5d71a0da2e796cb6ae (diff)
UI: rename Quit Prompt to Save Prompt
Eventually this should be used to prompt when loading a new file too.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_operators.c')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 55c257038ad..d047057759e 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -1810,7 +1810,7 @@ static int wm_exit_blender_exec(bContext *C, wmOperator *UNUSED(op))
static int wm_exit_blender_invoke(bContext *C, wmOperator *UNUSED(op), const wmEvent *UNUSED(event))
{
- if (U.uiflag & USER_QUIT_PROMPT) {
+ if (U.uiflag & USER_SAVE_PROMPT) {
wm_quit_with_optional_confirmation_prompt(C, CTX_wm_window(C));
}
else {