From bb0012481247dc9efce38643061e1e21fa1dd034 Mon Sep 17 00:00:00 2001 From: default0 Date: Tue, 8 Dec 2015 19:01:26 +0100 Subject: [PATCH] Improve project creation error message --- src/dlangide/ui/newproject.d | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/dlangide/ui/newproject.d b/src/dlangide/ui/newproject.d index 88c7dc6..494e594 100644 --- a/src/dlangide/ui/newproject.d +++ b/src/dlangide/ui/newproject.d @@ -261,6 +261,9 @@ class NewProjectDlg : Dialog { _statusText.text = msg; return msg.empty; } + dstring getError() { + return _statusText.text; + } ProjectCreationResult _result; @@ -268,7 +271,7 @@ class NewProjectDlg : Dialog { Action newaction = action.clone(); if (action.id == IDEActions.FileNewWorkspace || action.id == IDEActions.FileNewProject) { if (!validate()) { - window.showMessageBox(UIString("Cannot create project"d), UIString("Invalid parameters")); + window.showMessageBox(UIString("Cannot create project"d), UIString(getError())); return; } if (!createProject()) { @@ -281,8 +284,11 @@ class NewProjectDlg : Dialog { } bool validate() { - if (!exists(_location) || !isDir(_location)) { - return setError("Invalid location"); + if (!exists(_location)) { + return setError("The location directory does not exist"); + } + if(!isDir(_location)) { + return setError("The location is not a directory"); } if (!isValidProjectName(_projectName)) return setError("Invalid project name");