Skip to content

Commit 6b57827

Browse files
committed
xiu--modi--02
1 parent c1db2d2 commit 6b57827

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

examples/callback/callback.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package main
33
import (
44
"log"
55
"path/filepath"
6-
7-
"github.com/sciter-sdk/go-sciter"
8-
"github.com/sciter-sdk/go-sciter/window"
6+
7+
"github.com/fire988/go-sciter"
8+
"github.com/fire988/go-sciter/window"
99
)
1010

1111
func main() {

rice/rice.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"log"
55
"strings"
66

7-
"github.com/GeertJohan/go.rice"
8-
"github.com/sciter-sdk/go-sciter"
7+
rice "github.com/GeertJohan/go.rice"
8+
"github.com/fire988/go-sciter"
99
)
1010

1111
var (

window/window.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package window
22

33
import (
4-
"github.com/sciter-sdk/go-sciter"
54
"runtime"
5+
6+
"github.com/fire988/go-sciter"
67
)
78

89
type Window struct {
@@ -14,8 +15,6 @@ func (w *Window) run() {
1415
// runtime.LockOSThread()
1516
}
1617

17-
// https://github.com/golang/go/wiki/LockOSThread
18-
// https://github.com/sciter-sdk/go-sciter/issues/201
1918
func init() {
2019
runtime.LockOSThread()
2120
}

window/window_darwin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import (
4747
"fmt"
4848
"unsafe"
4949

50-
"github.com/sciter-sdk/go-sciter"
50+
"github.com/fire988/go-sciter"
5151
)
5252

5353
func New(creationFlags sciter.WindowCreationFlag, rect *sciter.Rect) (*Window, error) {

window/window_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"fmt"
2121
"unsafe"
2222

23-
"github.com/sciter-sdk/go-sciter"
23+
"github.com/fire988/go-sciter"
2424
)
2525

2626
// Linux/gtk3 must (at least) use sciter.DefaultWindowCreationFlag to create the main window correctly

window/window_windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"syscall"
1010
"unsafe"
1111

12+
"github.com/fire988/go-sciter"
1213
"github.com/lxn/win"
13-
"github.com/sciter-sdk/go-sciter"
1414
)
1515

1616
func New(creationFlags sciter.WindowCreationFlag, rect *sciter.Rect) (*Window, error) {

0 commit comments

Comments
 (0)