From 4f47f21d446cc6b927939507b00e1299c3ce6b01 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 12 Nov 2009 12:48:39 +0000 Subject: small corrections, no functionality change --- source/blender/makesrna/intern/rna_screen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/makesrna/intern/rna_screen.c') diff --git a/source/blender/makesrna/intern/rna_screen.c b/source/blender/makesrna/intern/rna_screen.c index 66231cef90b..79a5d3d5cd1 100644 --- a/source/blender/makesrna/intern/rna_screen.c +++ b/source/blender/makesrna/intern/rna_screen.c @@ -152,12 +152,12 @@ static void rna_def_region(BlenderRNA *brna) prop= RNA_def_property(srna, "width", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "winx"); RNA_def_property_clear_flag(prop, PROP_EDITABLE); - RNA_def_property_ui_text(prop, "Width", "Area width."); + RNA_def_property_ui_text(prop, "Width", "Region width."); prop= RNA_def_property(srna, "height", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "winy"); RNA_def_property_clear_flag(prop, PROP_EDITABLE); - RNA_def_property_ui_text(prop, "Height", "Area height."); + RNA_def_property_ui_text(prop, "Height", "Region height."); } static void rna_def_screen(BlenderRNA *brna) -- cgit v1.2.3