diff options
author | Aylur <[email protected]> | 2024-09-02 14:48:18 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-09-02 14:48:18 +0200 |
commit | bf639c4e0bcd6a8625275bb62662cb7725b5ace7 (patch) | |
tree | afdc7ae76cd9476540f3a5d14c192db20242ed82 /core/gjs/src/jsx/jsx-runtime.ts | |
parent | 292723065d5f6f742d11bec3498ef60b33979daa (diff) | |
parent | 4891da8cc426a2c88d6f6dbb45fd5ce6b5d3c8c6 (diff) |
Merge pull request #3 from Aylur/feat/circular_progress
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 |