app: return visible widgets from a few more gimp_prop() functions

... in particular, this fixes the Rotate Colors prop-gui.
This commit is contained in:
Ell 2020-07-31 20:46:14 +03:00
parent ae0f595a19
commit 552991b2d2
2 changed files with 6 additions and 0 deletions

View File

@ -146,6 +146,8 @@ gimp_prop_angle_range_box_new (GObject *config,
G_CALLBACK (select_all_clicked), G_CALLBACK (select_all_clicked),
dial); dial);
gtk_widget_show (main_hbox);
return main_hbox; return main_hbox;
} }

View File

@ -949,6 +949,8 @@ gimp_prop_angle_range_dial_new (GObject *config,
G_BINDING_BIDIRECTIONAL | G_BINDING_BIDIRECTIONAL |
G_BINDING_SYNC_CREATE); G_BINDING_SYNC_CREATE);
gtk_widget_show (dial);
return dial; return dial;
} }
@ -1063,6 +1065,8 @@ gimp_prop_range_new (GObject *config,
if (sorted) if (sorted)
gimp_gtk_adjustment_chain (adjustment1, adjustment2); gimp_gtk_adjustment_chain (adjustment1, adjustment2);
gtk_widget_show (vbox);
return vbox; return vbox;
} }