Showing or hiding a control does not trigger a parent arrangement if the Ignore property was set.

[GB.GTK]
* BUG: Showing or hiding a control does not trigger a parent arrangement if the Ignore property was set.

[GB.GTK3]
* BUG: Showing or hiding a control does not trigger a parent arrangement if the Ignore property was set.
This commit is contained in:
gambas 2021-03-10 15:50:17 +01:00
parent 3240ebd8ef
commit 91996df3fc

View file

@ -555,7 +555,7 @@ void gControl::setVisible(bool vl)
gtk_widget_hide(border);
}
if (pr) pr->performArrange();
if (!isIgnore() && pr) pr->performArrange();
}
/*****************************************************************