mirror of https://github.com/buggins/dlangide.git
provide default editor popup menu - fix #290
This commit is contained in:
parent
4f2cd3391f
commit
75a9c780a7
2
dub.json
2
dub.json
|
@ -12,7 +12,7 @@
|
|||
"stringImportPaths": ["views"],
|
||||
|
||||
"dependencies": {
|
||||
"dlangui": "==0.9.148",
|
||||
"dlangui": "==0.9.149",
|
||||
"dsymbol": "~>0.2.9",
|
||||
"dcd": "~>0.9.1"
|
||||
},
|
||||
|
|
|
@ -127,6 +127,11 @@ class NewFileDlg : Dialog {
|
|||
_edModuleName.enterKey.connect(&onEnterKey);
|
||||
_edLocation.enterKey.connect(&onEnterKey);
|
||||
|
||||
_edFileName.setDefaultPopupMenu();
|
||||
_edFilePath.setDefaultPopupMenu();
|
||||
_edModuleName.setDefaultPopupMenu();
|
||||
_edLocation.setDefaultPopupMenu();
|
||||
|
||||
// fill templates
|
||||
dstring[] names;
|
||||
foreach(t; _templates)
|
||||
|
|
|
@ -202,6 +202,10 @@ class NewProjectDlg : Dialog {
|
|||
return true;
|
||||
};
|
||||
|
||||
_edLocation.setDefaultPopupMenu();
|
||||
_edWorkspaceName.setDefaultPopupMenu();
|
||||
_edProjectName.setDefaultPopupMenu();
|
||||
|
||||
addChild(content);
|
||||
addChild(createButtonsPanel([_newWorkspace ? ACTION_FILE_NEW_WORKSPACE : ACTION_FILE_NEW_PROJECT, ACTION_CANCEL], 0, 0));
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
v0.7.98
|
||||
v0.7.99
|
Loading…
Reference in New Issue