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:
authorJulian Eisel <eiseljulian@gmail.com>2016-07-26 21:15:00 +0300
committerJulian Eisel <eiseljulian@gmail.com>2016-07-26 21:25:55 +0300
commit24b8e781f6de88d0ad5c49771cfe2d9f6ba08d84 (patch)
tree17efd0c47de62409f7ab1aa0c7c0fd644c9b3817 /source/blender/editors/interface/interface_regions.c
parent3c59a5068fbb3a91777297e4b7007de33197972a (diff)
Correct UI names of ID types
Also correct typo.
Diffstat (limited to 'source/blender/editors/interface/interface_regions.c')
-rw-r--r--source/blender/editors/interface/interface_regions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_regions.c b/source/blender/editors/interface/interface_regions.c
index 48618a2e07c..ed6e6fa7a17 100644
--- a/source/blender/editors/interface/interface_regions.c
+++ b/source/blender/editors/interface/interface_regions.c
@@ -3341,7 +3341,7 @@ void UI_popup_block_close(bContext *C, wmWindow *win, uiBlock *block)
UI_popup_handlers_remove(&win->modalhandlers, block->handle);
ui_popup_block_free(C, block->handle);
- /* In the case we have nested popups, closing one may need to redraw anorher, see: T48874 */
+ /* In the case we have nested popups, closing one may need to redraw another, see: T48874 */
for (ARegion *ar = win->screen->regionbase.first; ar; ar = ar->next) {
ED_region_tag_refresh_ui(ar);
}