Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3fe6d71234 | ||
|
|
0e5b1cf659 | ||
|
|
6494557979 | ||
|
|
f68678f687 | ||
|
|
e31df6e721 | ||
|
|
9509a65625 |
29
main.go
29
main.go
@@ -21,7 +21,7 @@ import (
|
|||||||
"github.com/gotk3/gotk3/gtk"
|
"github.com/gotk3/gotk3/gtk"
|
||||||
)
|
)
|
||||||
|
|
||||||
const version = "0.3.1"
|
const version = "0.3.3"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
appDirs []string
|
appDirs []string
|
||||||
@@ -200,7 +200,10 @@ func main() {
|
|||||||
log.Warnf("Resident instance already running (PID %v)", i)
|
log.Warnf("Resident instance already running (PID %v)", i)
|
||||||
} else {
|
} else {
|
||||||
log.Infof("Showing resident instance (PID %v)", i)
|
log.Infof("Showing resident instance (PID %v)", i)
|
||||||
syscall.Kill(i, syscall.SIGUSR1)
|
err := syscall.Kill(i, syscall.SIGUSR1)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -546,12 +549,14 @@ func main() {
|
|||||||
fileSearchResultWrapper.Hide()
|
fileSearchResultWrapper.Hide()
|
||||||
}
|
}
|
||||||
// focus 1st element
|
// focus 1st element
|
||||||
b := appFlowBox.GetChildAtIndex(0)
|
var button gtk.IWidget
|
||||||
if b != nil {
|
if pinnedFlowBox.GetChildren().Length() > 0 {
|
||||||
button, err := b.GetChild()
|
button, err = pinnedFlowBox.GetChildAtIndex(0).GetChild()
|
||||||
if err == nil {
|
} else {
|
||||||
button.ToWidget().GrabFocus()
|
button, err = appFlowBox.GetChildAtIndex(0).GetChild()
|
||||||
}
|
}
|
||||||
|
if err == nil {
|
||||||
|
button.ToWidget().GrabFocus()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -577,7 +582,9 @@ func main() {
|
|||||||
|
|
||||||
func restoreStateAndHide() {
|
func restoreStateAndHide() {
|
||||||
timeStart1 := time.Now()
|
timeStart1 := time.Now()
|
||||||
win.Hide()
|
if win != nil {
|
||||||
|
win.Hide()
|
||||||
|
}
|
||||||
|
|
||||||
// clear search
|
// clear search
|
||||||
searchEntry.SetText("")
|
searchEntry.SetText("")
|
||||||
@@ -590,7 +597,9 @@ func restoreStateAndHide() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// scroll to the top
|
// scroll to the top
|
||||||
resultWindow.GetVAdjustment().SetValue(0)
|
if resultWindow != nil {
|
||||||
|
resultWindow.GetVAdjustment().SetValue(0)
|
||||||
|
}
|
||||||
|
|
||||||
t := time.Now()
|
t := time.Now()
|
||||||
log.Debugf(fmt.Sprintf("UI hidden and restored in the backgroud in %v ms", t.Sub(timeStart1).Milliseconds()))
|
log.Debugf(fmt.Sprintf("UI hidden and restored in the backgroud in %v ms", t.Sub(timeStart1).Milliseconds()))
|
||||||
|
|||||||
Reference in New Issue
Block a user