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

fixing adding item into treeview if item not have parent item #771

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
16 changes: 10 additions & 6 deletions treeview.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,16 @@ func (tv *TreeView) SetModel(model TreeModel) error {

var hInsertAfter win.HTREEITEM
parent := item.Parent()
for i := parent.ChildCount() - 1; i >= 0; i-- {
if parent.ChildAt(i) == item {
if i > 0 {
hInsertAfter = tv.item2Info[parent.ChildAt(i-1)].handle
} else {
hInsertAfter = win.TVI_FIRST
if parent == nil {
hInsertAfter = win.TVI_LAST
} else {
for i := parent.ChildCount() - 1; i >= 0; i-- {
if parent.ChildAt(i) == item {
if i > 0 {
hInsertAfter = tv.item2Info[parent.ChildAt(i-1)].handle
} else {
hInsertAfter = win.TVI_FIRST
}
}
}
}
Expand Down