focus 1st pinned if any, or focus 1st appBox entry; fixes #72
This commit is contained in:
10
main.go
10
main.go
@@ -549,14 +549,16 @@ func main() {
|
||||
fileSearchResultWrapper.Hide()
|
||||
}
|
||||
// focus 1st element
|
||||
b := appFlowBox.GetChildAtIndex(0)
|
||||
if b != nil {
|
||||
button, err := b.GetChild()
|
||||
var button gtk.IWidget
|
||||
if pinnedFlowBox.GetChildren().Length() > 0 {
|
||||
button, err = pinnedFlowBox.GetChildAtIndex(0).GetChild()
|
||||
} else {
|
||||
button, err = appFlowBox.GetChildAtIndex(0).GetChild()
|
||||
}
|
||||
if err == nil {
|
||||
button.ToWidget().GrabFocus()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user