blob: f6a041f72c8e406c8f816bab383928dace532dd8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 18 august 2014
package ui
// OpenFile opens a dialog box that asks the user to choose a file.
// It returns the selected filename, or an empty string if no file was chosen.
// All events stop while OpenFile is executing. (TODO move to doc.go)
func OpenFile() (filename string) {
return openFile()
}
|