You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From mainAppWindow:
...
OpenChildAppWindow(app)
mainAppWindow.Hide()
//----------------------------
From OpenchildAppWindow:
childAppWindow := gtk.NewApplicationWindow(app)
.....
childAppWindow.Connect("destroy", func(){
mainAppWindow.Show() // but mainAppWindow does not show
})
//----------------------------
If I use button "destroy" signal, the mainAppWindow shows as expected:
btn.Connect("destroy", func(){
mainAppWindow.Show() // it shows
})
//----------------------------
Please help to fix. Thank you.
The text was updated successfully, but these errors were encountered:
From mainAppWindow:
...
OpenChildAppWindow(app)
mainAppWindow.Hide()
//----------------------------
From OpenchildAppWindow:
childAppWindow := gtk.NewApplicationWindow(app)
.....
childAppWindow.Connect("destroy", func(){
mainAppWindow.Show() // but mainAppWindow does not show
})
//----------------------------
If I use button "destroy" signal, the mainAppWindow shows as expected:
btn.Connect("destroy", func(){
mainAppWindow.Show() // it shows
})
//----------------------------
Please help to fix. Thank you.
The text was updated successfully, but these errors were encountered: