diff options
author | Antonia Rescribe <antonia@rescribe.xyz> | 2021-12-20 12:06:30 +0000 |
---|---|---|
committer | Nick White <git@njw.name> | 2021-12-20 12:27:56 +0000 |
commit | 2e3bef288256fe25f982b9adeaacd2930cccd21e (patch) | |
tree | 9b7612e82c2ff3c5b4885a55d0d2ce819ff10fc4 /cmd/rescribe/gui.go | |
parent | 3e953e66d02416270356d0d7d3b6ea2df0260c77 (diff) |
fixed -png flag and changed rescribe tool to save binarized png in separate folder
Diffstat (limited to 'cmd/rescribe/gui.go')
-rw-r--r-- | cmd/rescribe/gui.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/rescribe/gui.go b/cmd/rescribe/gui.go index 5e9e1dc..36d9b3a 100644 --- a/cmd/rescribe/gui.go +++ b/cmd/rescribe/gui.go @@ -99,6 +99,8 @@ func startGui(log log.Logger, cmd string, training string, systess bool, tessdir myApp := app.New() myWindow := myApp.NewWindow("Rescribe OCR") + myWindow.Resize(fyne.NewSize(800, 400)) + var gobtn *widget.Button dir := widget.NewEntry() @@ -126,7 +128,7 @@ func startGui(log log.Logger, cmd string, training string, systess bool, tessdir logarea.Disable() // TODO: have the button be pressed if enter is pressed - gobtn = widget.NewButtonWithIcon("Process OCR", theme.UploadIcon(), func() { + gobtn = widget.NewButtonWithIcon("Start OCR", theme.UploadIcon(), func() { if dir.Text == "" { return } |