diff options
author | kotontrion <[email protected]> | 2024-08-23 10:52:40 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-09-02 09:36:06 +0200 |
commit | d248645888c88eaf28ef334264bf4e41a06f6b4d (patch) | |
tree | ebb52cea020114d067b5e99f1f3ef5323492a057 /core/gjs/src/jsx/jsx-runtime.ts | |
parent | 8da6a2174296bc1b78c6dde13f6bca46e67e156a (diff) |
fixes circular progress widgets
Diffstat (limited to 'core/gjs/src/jsx/jsx-runtime.ts')
-rw-r--r-- | core/gjs/src/jsx/jsx-runtime.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/gjs/src/jsx/jsx-runtime.ts b/core/gjs/src/jsx/jsx-runtime.ts index 70f098f..02fd39d 100644 --- a/core/gjs/src/jsx/jsx-runtime.ts +++ b/core/gjs/src/jsx/jsx-runtime.ts @@ -35,7 +35,7 @@ const ctors = { box: Widget.Box, button: Widget.Button, centerbox: Widget.CenterBox, - // TODO: circularprogress + circularprogress: Widget.CircularProgress, drawingarea: Widget.DrawingArea, entry: Widget.Entry, eventbox: Widget.EventBox, @@ -63,7 +63,7 @@ declare global { box: Widget.BoxProps button: Widget.ButtonProps centerbox: Widget.CenterBoxProps - // TODO: circularprogress + circularprogress: Widget.CircularProgressProps, drawingarea: Widget.DrawingAreaProps entry: Widget.EntryProps eventbox: Widget.EventBoxProps |