fix: allow adding action widgets to GtkInfoBar

This commit is contained in:
Gleb Smirnov 2022-02-19 12:51:34 +03:00
parent d9ef1d4df9
commit 4103ad3e71
No known key found for this signature in database
GPG key ID: 559DB6D1D625EFAB
9 changed files with 47 additions and 13 deletions

View file

@ -19,7 +19,7 @@
import typing as T
from .gtk_dialog import ResponseId
from .response_id import ResponseId
from .common import *
@ -83,9 +83,9 @@ class Object(AstNode):
@property
def action_widgets(self) -> T.List[ResponseId]:
"""Get list of `GtkDialog`'s action widgets.
"""Get list of widget's action widgets.
Empty if object is not `GtkDialog`.
Empty if object doesn't have action widgets.
"""
from .gtkbuilder_child import Child