[Box] Fix update not propagating to parent.

This commit is contained in:
Dave Davenport 2019-11-07 12:44:20 +01:00
parent c1378e4c60
commit eb5c4bfdcc
1 changed files with 3 additions and 0 deletions

View File

@ -361,4 +361,7 @@ static void box_update ( widget *wid )
default:
hori_calculate_size ( b );
}
if ( wid->parent ) {
widget_update ( wid->parent );
}
}