Import/Export GUI

This commit is contained in:
Pavel Škoda
2020-06-23 15:35:54 +02:00
committed by Michal Horejsek
parent 1c10cc5065
commit 7e5e3d3dd4
50 changed files with 1793 additions and 692 deletions

View File

@ -198,7 +198,7 @@ func (p *Progress) callWrap(callback func() error) {
break
}
p.Pause(err.Error())
p.Pause("paused due to " + err.Error())
}
}
@ -333,3 +333,11 @@ func (p *Progress) GenerateBugReport() []byte {
}
return bugReport.getData()
}
func (p *Progress) FileReport() (path string) {
if r := p.fileReport; r != nil {
path = r.path
}
return
}