Skip to content

Commit ee35497

Browse files
xuancanhCanh Nguyenxuri
authored
Fix qax-os#673 comment shape compatibility issue with the recent Excel versions
* Fix comment shape compatibility issue * Using Go modules with Travis CI * Update .travis.yml Co-authored-by: Canh Nguyen <nguyenxc@seagroup.com> Co-authored-by: xuri <xuri.me@gmail.com>
1 parent 13e7bce commit ee35497

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ env:
1919
- GOARCH=386
2020

2121
script:
22-
- go vet ./...
23-
- go test ./... -v -coverprofile=coverage.txt -covermode=atomic
22+
- env GO111MODULE=on go vet ./...
23+
- env GO111MODULE=on go test ./... -v -coverprofile=coverage.txt -covermode=atomic
2424

2525
after_success:
2626
- bash <(curl -s https://codecov.io/bash)

comment.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ func (f *File) addDrawingVML(commentID int, drawingVML, cell string, lineCount,
164164
},
165165
VPath: &vPath{
166166
Gradientshapeok: "t",
167-
Connecttype: "miter",
167+
Connecttype: "rect",
168168
},
169169
},
170170
}

0 commit comments

Comments
 (0)