dtappbuilder: Fix a crash when resize a text pane. The crash is occurred when

drag on the scrollbar to resize.
This commit is contained in:
Liang Chang 2021-04-04 09:13:55 +08:00
parent 2851d666eb
commit 7287f262ad
1 changed files with 1 additions and 3 deletions

View File

@ -1063,9 +1063,7 @@ abobj_set_num_columns(
(obj_is_text(obj) || obj_is_term_pane(obj)))
{
objxm_obj_set_ui_arg(subObj, AB_ARG_INT, XmNcolumns, num_cols);
/*
obj_clear_flag(obj, InstantiatedFlag);
*/
if (obj_is_text(obj)) obj_clear_flag(obj, InstantiatedFlag);
obj_clear_flag(subObj, InstantiatedFlag);
}
else if (obj_is_choice(obj))