mirror of https://github.com/buggins/dlangide.git
fix workspace explorer Open popup menu item handling - fix #316
This commit is contained in:
parent
74e76d266a
commit
33fa1056dd
|
@ -973,6 +973,12 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
|||
window.showMessageBox(UIString.fromId("ABOUT"c) ~ " " ~ DLANGIDE_VERSION,
|
||||
UIString.fromRaw(msg));
|
||||
return true;
|
||||
case IDEActions.ProjectFolderOpenItem:
|
||||
ProjectItem item = cast(ProjectItem)a.objectParam;
|
||||
if (item && !item.isFolder) {
|
||||
openSourceFile(item.filename);
|
||||
}
|
||||
return true;
|
||||
case StandardAction.OpenUrl:
|
||||
platform.openURL(a.stringParam);
|
||||
return true;
|
||||
|
@ -1324,15 +1330,15 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
|||
1, delegate(const Action result) {
|
||||
if (result == StandardAction.Yes) {
|
||||
// save and close
|
||||
try {
|
||||
import std.file : remove;
|
||||
closeTab(srcfile.filename);
|
||||
try {
|
||||
remove(srcfile.filename);
|
||||
} catch (Exception e) {
|
||||
Log.e("Cannot remove file");
|
||||
}
|
||||
project.refresh();
|
||||
refreshWorkspace();
|
||||
} catch (Exception e) {
|
||||
Log.e("Error while removing file");
|
||||
}
|
||||
}
|
||||
// else ignore
|
||||
return true;
|
||||
|
|
|
@ -433,7 +433,7 @@ void handleRequest(HTTPServerRequest req,
|
|||
immutable string DUB_JSON_VIBED_HELLOWORLD = q{
|
||||
{
|
||||
"dependencies": {
|
||||
"vibe-d": "~>0.7.30-rc.1"
|
||||
"vibe-d": "~>0.8.1"
|
||||
},
|
||||
"versions": ["VibeDefaultMain"]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue