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/makesrna
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/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index b12852220a2..cf79e4eec4b 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -3843,9 +3843,9 @@ static void rna_def_userdef_view(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Confirm Threshold",
"Distance threshold after which selection is made (zero to disable)");
- prop = RNA_def_property(srna, "use_quit_dialog", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_QUIT_PROMPT);
- RNA_def_property_ui_text(prop, "Prompt Quit",
+ prop = RNA_def_property(srna, "use_save_prompt", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_SAVE_PROMPT);
+ RNA_def_property_ui_text(prop, "Save Prompt",
"Ask for confirmation when quitting with unsaved changes");
prop = RNA_def_property(srna, "show_column_layout", PROP_BOOLEAN, PROP_NONE);