From b308e45175c1b624f93297535cda759af4f969be Mon Sep 17 00:00:00 2001 From: gucio321 <73652197+gucio321@users.noreply.github.com> Date: Tue, 24 Sep 2024 14:44:33 +0200 Subject: [PATCH] run sed -i -e "s/imgui \"github.com\/AllenDang\/cimgui-go/\"github.com\/AllenDang\/cimgui-go\/imgui/g" * --- Alignment.go | 2 +- Canvas.go | 2 +- ClickableWidgets.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Alignment.go b/Alignment.go index 039cda85..e4b4136d 100644 --- a/Alignment.go +++ b/Alignment.go @@ -4,7 +4,7 @@ import ( "fmt" "image" - imgui "github.com/AllenDang/cimgui-go" + "github.com/AllenDang/cimgui-go/imgui" ) // These constants holds information about where GetWidgetWidth should proceed their diff --git a/Canvas.go b/Canvas.go index a24270b0..87232cc5 100644 --- a/Canvas.go +++ b/Canvas.go @@ -4,7 +4,7 @@ import ( "image" "image/color" - imgui "github.com/AllenDang/cimgui-go" + "github.com/AllenDang/cimgui-go/imgui" ) // Canvas represents imgui.DrawList diff --git a/ClickableWidgets.go b/ClickableWidgets.go index f3a27701..498b0b5f 100644 --- a/ClickableWidgets.go +++ b/ClickableWidgets.go @@ -5,7 +5,7 @@ import ( "image" "image/color" - imgui "github.com/AllenDang/cimgui-go" + "github.com/AllenDang/cimgui-go/imgui" "golang.org/x/image/colornames" )