(xg_create_frame_widgets): If frame is embedded, call
gtk_plug_new.
This commit is contained in:
parent
89f74d7c5f
commit
0f0d223bea
1 changed files with 5 additions and 1 deletions
|
@ -786,7 +786,11 @@ xg_create_frame_widgets (f)
|
|||
|
||||
BLOCK_INPUT;
|
||||
|
||||
wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
||||
if (FRAME_X_EMBEDDED_P (f))
|
||||
wtop = gtk_plug_new (f->output_data.x->parent_desc);
|
||||
else
|
||||
wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
||||
|
||||
xg_set_screen (wtop, f);
|
||||
|
||||
wvbox = gtk_vbox_new (FALSE, 0);
|
||||
|
|
Loading…
Add table
Reference in a new issue