Add lambda values

This commit is contained in:
James Westman 2022-07-09 19:20:15 -05:00
parent 30f0deea34
commit d7155981b1
No known key found for this signature in database
GPG key ID: CE2DBA0ADB654EA6
8 changed files with 119 additions and 4 deletions

View file

@ -16,6 +16,7 @@ from .gtk_string_list import Strings
from .gtk_styles import Styles
from .gtkbuilder_child import Child
from .gtkbuilder_template import Template
from .lambdas import Lambda
from .imports import GtkDirective, Import
from .ui import UI
from .values import IdentValue, TranslatedStringValue, FlagsValue, LiteralValue
@ -47,4 +48,5 @@ VALUE_HOOKS.children = [
FlagsValue,
IdentValue,
LiteralValue,
Lambda,
]