fix workspace explorer Open popup menu item handling - fix #316

This commit is contained in:
Vadim Lopatin 2017-09-22 11:14:27 +03:00
parent 74e76d266a
commit 33fa1056dd
2 changed files with 12 additions and 6 deletions

View File

@ -973,6 +973,12 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
window.showMessageBox(UIString.fromId("ABOUT"c) ~ " " ~ DLANGIDE_VERSION, window.showMessageBox(UIString.fromId("ABOUT"c) ~ " " ~ DLANGIDE_VERSION,
UIString.fromRaw(msg)); UIString.fromRaw(msg));
return true; return true;
case IDEActions.ProjectFolderOpenItem:
ProjectItem item = cast(ProjectItem)a.objectParam;
if (item && !item.isFolder) {
openSourceFile(item.filename);
}
return true;
case StandardAction.OpenUrl: case StandardAction.OpenUrl:
platform.openURL(a.stringParam); platform.openURL(a.stringParam);
return true; return true;
@ -1324,15 +1330,15 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
1, delegate(const Action result) { 1, delegate(const Action result) {
if (result == StandardAction.Yes) { if (result == StandardAction.Yes) {
// save and close // save and close
import std.file : remove;
closeTab(srcfile.filename);
try { try {
import std.file : remove;
closeTab(srcfile.filename);
remove(srcfile.filename); remove(srcfile.filename);
project.refresh();
refreshWorkspace();
} catch (Exception e) { } catch (Exception e) {
Log.e("Error while removing file"); Log.e("Cannot remove file");
} }
project.refresh();
refreshWorkspace();
} }
// else ignore // else ignore
return true; return true;

View File

@ -433,7 +433,7 @@ void handleRequest(HTTPServerRequest req,
immutable string DUB_JSON_VIBED_HELLOWORLD = q{ immutable string DUB_JSON_VIBED_HELLOWORLD = q{
{ {
"dependencies": { "dependencies": {
"vibe-d": "~>0.7.30-rc.1" "vibe-d": "~>0.8.1"
}, },
"versions": ["VibeDefaultMain"] "versions": ["VibeDefaultMain"]
} }