GtkDialog mapped without a transient parent. #50
-
I'm getting:
when i click on the button that opens my My structure is:
thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You are correct, GTK needs the "parent window" for the dialog. This means that you need to pass the toplevel viewable to the |
Beta Was this translation helpful? Give feedback.
You are correct, GTK needs the "parent window" for the dialog. This means that you need to pass the toplevel viewable to the
open
function. This is actually pretty simple to do, since every viewable has the toplevel viewable stored in theViewable.app
field. Try usingloanListView.app.open
instead ofloanListView.open
.