Fix T80013: Crash when toggling maximized area

Error renaming variable in 75aeb4b881
This commit is contained in:
Hans Goudey 2020-08-22 11:30:51 -04:00
parent e26301f4d1
commit 1885bf77b6
Notes: blender-bot 2023-02-14 04:56:36 +01:00
Referenced by issue #80013, Crash when toggling maximized area
1 changed files with 1 additions and 1 deletions

View File

@ -4861,7 +4861,7 @@ static int fullscreen_back_exec(bContext *C, wmOperator *op)
/* search current screen for 'fullscreen' areas */
LISTBASE_FOREACH (ScrArea *, area_iter, &screen->areabase) {
if (area->full) {
if (area_iter->full) {
area = area_iter;
break;
}