mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-28 08:47:59 +01:00
Fixes #844. Now selects the correct Directory.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user