diff options
| author | Jeff Carr <[email protected]> | 2024-01-14 20:12:25 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-14 20:12:25 -0600 |
| commit | 1db4ed9a301500e3b5f5ed3a150fc33a3107fd50 (patch) | |
| tree | 8e6f24ee40b7ea2e7ff4c783b4fed2864f56f5b5 /examples | |
| parent | 70a69d6ae31ed9d8bb0619a191179c63d846ab8e (diff) | |
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/controlgallery.go | 4 | ||||
| -rw-r--r-- | examples/drawtext.go | 4 | ||||
| -rw-r--r-- | examples/histogram.go | 4 | ||||
| -rw-r--r-- | examples/table.go | 4 | ||||
| -rw-r--r-- | examples/updateui.go | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/examples/controlgallery.go b/examples/controlgallery.go index e2d2dc2..d09ff90 100644 --- a/examples/controlgallery.go +++ b/examples/controlgallery.go @@ -5,8 +5,8 @@ package main import ( - "github.com/andlabs/ui" - _ "github.com/andlabs/ui/winmanifest" + "go.wit.com/dev/andlabs/ui" + _ "go.wit.com/dev/andlabs/ui/winmanifest" ) var mainwin *ui.Window diff --git a/examples/drawtext.go b/examples/drawtext.go index 0aaeb7d..5d203ba 100644 --- a/examples/drawtext.go +++ b/examples/drawtext.go @@ -7,8 +7,8 @@ package main // TODO probably a bug in libui: changing the font away from skia leads to a crash import ( - "github.com/andlabs/ui" - _ "github.com/andlabs/ui/winmanifest" + "go.wit.com/dev/andlabs/ui" + _ "go.wit.com/dev/andlabs/ui/winmanifest" ) var ( diff --git a/examples/histogram.go b/examples/histogram.go index 55a9f59..baabf34 100644 --- a/examples/histogram.go +++ b/examples/histogram.go @@ -8,8 +8,8 @@ import ( "math/rand" "time" - "github.com/andlabs/ui" - _ "github.com/andlabs/ui/winmanifest" + "go.wit.com/dev/andlabs/ui" + _ "go.wit.com/dev/andlabs/ui/winmanifest" ) var ( diff --git a/examples/table.go b/examples/table.go index 1d11f8d..5730e93 100644 --- a/examples/table.go +++ b/examples/table.go @@ -15,8 +15,8 @@ import ( "image/draw" "bytes" - "github.com/andlabs/ui" - _ "github.com/andlabs/ui/winmanifest" + "go.wit.com/dev/andlabs/ui" + _ "go.wit.com/dev/andlabs/ui/winmanifest" ) type modelHandler struct { diff --git a/examples/updateui.go b/examples/updateui.go index 48aadfd..6c9b828 100644 --- a/examples/updateui.go +++ b/examples/updateui.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/andlabs/ui" + "go.wit.com/dev/andlabs/ui" ) // Example showing how to update the UI using the QueueMain function |
