mirror of
https://github.com/nicbarker/clay.git
synced 2025-12-23 09:41:04 +00:00
Merge 3c2082e309 into 389a044cd2
This commit is contained in:
commit
ac791869fa
|
|
@ -439,7 +439,12 @@ UI_AutoId :: proc() -> proc (config: ElementDeclaration) -> bool {
|
|||
|
||||
UI :: proc{UI_WithId, UI_AutoId}
|
||||
|
||||
Text :: proc($text: string, config: ^TextElementConfig) {
|
||||
Text :: proc {
|
||||
TextStatic,
|
||||
TextDynamic,
|
||||
}
|
||||
|
||||
TextStatic :: proc($text: string, config: ^TextElementConfig) {
|
||||
wrapped := MakeString(text)
|
||||
wrapped.isStaticallyAllocated = true
|
||||
_OpenTextElement(wrapped, config)
|
||||
|
|
|
|||
Loading…
Reference in a new issue