Git commit 07d0b391fc6a89c89236a9796d529e6590eb8698 by Ruslan Kabatsayev. Committed on 30/09/2012 at 23:48. Pushed by kabatsayev into branch '1.3'. Set groupbox label state as resized before actually resizing it to prevent = infinite recursion M +2 -1 src/animations/oxygengroupboxlabeldata.h http://commits.kde.org/oxygen-gtk/07d0b391fc6a89c89236a9796d529e6590eb8698 diff --git a/src/animations/oxygengroupboxlabeldata.h b/src/animations/oxyg= engroupboxlabeldata.h index 21c7d36..a34e165 100644 --- a/src/animations/oxygengroupboxlabeldata.h +++ b/src/animations/oxygengroupboxlabeldata.h @@ -57,8 +57,9 @@ namespace Oxygen if( allocation.height > 1 ) { = - gtk_widget_set_size_request( widget, allocation.width, all= ocation.height+14 ); + // Save resized state before actually resizing to prevent = infinite recursion (bug 305833) _resized =3D true; + gtk_widget_set_size_request( widget, allocation.width, all= ocation.height+14 ); = } }