From 039f0e633874d379af90b299da3daf092b42246a Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Fri, 27 Dec 2019 16:46:38 -0800 Subject: [PATCH] Fix some import paths --- button.go | 2 +- check_button.go | 2 +- widget.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/button.go b/button.go index 511227c..1df20d0 100644 --- a/button.go +++ b/button.go @@ -5,7 +5,7 @@ import ( "fmt" "git.kirsle.net/go/render" - "git.kirsle.net/apps/doodle/lib/ui/theme" + "git.kirsle.net/go/ui/theme" ) // Button is a clickable button. diff --git a/check_button.go b/check_button.go index 5074c94..84d5044 100644 --- a/check_button.go +++ b/check_button.go @@ -5,7 +5,7 @@ import ( "strconv" "git.kirsle.net/go/render" - "git.kirsle.net/apps/doodle/lib/ui/theme" + "git.kirsle.net/go/ui/theme" ) // CheckButton implements a checkbox and radiobox widget. It's based on a diff --git a/widget.go b/widget.go index 0f0ec71..daf7dc2 100644 --- a/widget.go +++ b/widget.go @@ -4,7 +4,7 @@ import ( "fmt" "git.kirsle.net/go/render" - "git.kirsle.net/apps/doodle/lib/ui/theme" + "git.kirsle.net/go/ui/theme" ) // BorderStyle options for widget.SetBorderStyle()