Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WebView:Fixed a panic (see Attachment) of open new browser window in IE 10. #695

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.mdown
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ See [Getting Started](http://golang.org/doc/install.html)
Walk currently requires Go 1.11.x or later.

##### To Install
Now run `go get github.com/lxn/walk`
Now run `go get github.com/terryliu/walk`

Using Walk
==========
Expand All @@ -29,8 +29,8 @@ as illustrated in this small example:
package main

import (
"github.com/lxn/walk"
. "github.com/lxn/walk/declarative"
"github.com/terryliu/walk"
. "github.com/terryliu/walk/declarative"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion declarative/accessibility.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

// AccState enum defines the state of the window/control
Expand Down
2 changes: 1 addition & 1 deletion declarative/action.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package declarative
import (
"fmt"

"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type Shortcut struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/brush.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package declarative
import (
"strconv"

"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type TransparentBrush struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"regexp"
"strings"

"github.com/lxn/walk"
"github.com/terryliu/walk"
"gopkg.in/Knetic/govaluate.v3"
)

Expand Down
2 changes: 1 addition & 1 deletion declarative/checkbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type CheckBox struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/combobox.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type ComboBox struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/composite.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
"github.com/lxn/win"
)

Expand Down
2 changes: 1 addition & 1 deletion declarative/customwidget.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type PaintMode int
Expand Down
2 changes: 1 addition & 1 deletion declarative/databinder.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package declarative
import (
"time"

"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type DataBinder struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/dateedit.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type DateEdit struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/datelabel.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type DateLabel struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/dialog.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type Dialog struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/font.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type Font struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/gradientcomposite.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
"github.com/lxn/win"
)

Expand Down
2 changes: 1 addition & 1 deletion declarative/groupbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type GroupBox struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/imageview.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type ImageViewMode int
Expand Down
2 changes: 1 addition & 1 deletion declarative/interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package declarative
import (
"path/filepath"

"github.com/lxn/walk"
"github.com/terryliu/walk"
)

func tr(source string, context ...string) string {
Expand Down
2 changes: 1 addition & 1 deletion declarative/label.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type EllipsisMode int
Expand Down
2 changes: 1 addition & 1 deletion declarative/layouts.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package declarative
import (
"errors"

"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type Orientation byte
Expand Down
2 changes: 1 addition & 1 deletion declarative/lineedit.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type CaseMode uint32
Expand Down
2 changes: 1 addition & 1 deletion declarative/linklabel.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type LinkLabel struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/listbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
"github.com/lxn/win"
)

Expand Down
2 changes: 1 addition & 1 deletion declarative/mainwindow.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

package declarative

import "github.com/lxn/walk"
import "github.com/terryliu/walk"

type MainWindow struct {
// Window
Expand Down
2 changes: 1 addition & 1 deletion declarative/numberedit.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type NumberEdit struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/numberlabel.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type NumberLabel struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/progressbar.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type ProgressBar struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/pushbutton.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type PushButton struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/radiobutton.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type RadioButton struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/radiobuttongroup.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type RadioButtonGroup struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/radiobuttongroupbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type RadioButtonGroupBox struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/scrollview.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type ScrollView struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/separator.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type HSeparator struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/slider.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type Slider struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/spacer.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type HSpacer struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/splitbutton.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type SplitButton struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/splitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type HSplitter struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/tableview.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
"github.com/lxn/win"
)

Expand Down
2 changes: 1 addition & 1 deletion declarative/tableviewcolumn.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type Alignment1D uint
Expand Down
2 changes: 1 addition & 1 deletion declarative/tabpage.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type TabPage struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/tabwidget.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type TabWidget struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/textedit.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
"github.com/lxn/win"
)

Expand Down
2 changes: 1 addition & 1 deletion declarative/textlabel.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/terryliu/walk"
)

type Alignment2D uint
Expand Down
Loading