mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
Merge 3399570129 into 7e7aadc207
This commit is contained in:
commit
2d487b523f
1 changed files with 4 additions and 1 deletions
|
|
@ -423,7 +423,10 @@ func (gui *Gui) handleDonate(g *gocui.Gui, v *gocui.View) error {
|
|||
if cx > len(gui.Tr.Donate) {
|
||||
return nil
|
||||
}
|
||||
return gui.OSCommand.OpenLink("https://github.com/sponsors/jesseduffield")
|
||||
if err := gui.OSCommand.OpenLink("https://github.com/sponsors/jesseduffield"); err != nil {
|
||||
return gui.createErrorPanel(err.Error())
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (gui *Gui) editFile(filename string) error {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue