Skip to content

Commit

Permalink
fix: [main] #21
Browse files Browse the repository at this point in the history
  • Loading branch information
gallypette committed Jul 7, 2023
1 parent 6badd28 commit a0bcd0b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 4 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package main

import (
"os"
"path/filepath"

"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/storage"
"os"
"path/filepath"
)

func (h *hgui) setProject(u fyne.URI) {
Expand Down Expand Up @@ -36,6 +37,7 @@ func main() {
root := defaultDir()
hgui.setProject(root)
}
hgui.Filter = NewHashlookupBloom("Empty filter", hgui)

w.ShowAndRun()
}
7 changes: 4 additions & 3 deletions menu.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ package main

import (
"fmt"
"net/url"
"os"
"path/filepath"

"fyne.io/fyne/v2"
"fyne.io/fyne/v2/dialog"
"fyne.io/fyne/v2/storage"
"fyne.io/fyne/v2/theme"
"fyne.io/fyne/v2/widget"
"net/url"
"os"
"path/filepath"
)

func (h *hgui) setOffline() {
Expand Down

0 comments on commit a0bcd0b

Please sign in to comment.