Fixes #844. Now selects the correct Directory.

This commit is contained in:
BDisp
2020-08-02 11:17:10 +01:00
parent e658f08228
commit d232715e62
2 changed files with 9 additions and 7 deletions

View File

@@ -305,7 +305,7 @@ static class Demo {
Application.Run (d);
if (!d.Canceled)
MessageBox.Query (50, 7, "Selected File", string.Join (", ", d.FilePaths), "Ok");
MessageBox.Query (50, 7, "Selected File", d.FilePaths.Count > 0 ? string.Join (", ", d.FilePaths) : d.FilePath, "Ok");
}
public static void ShowHex (Toplevel top)