update dlangui dep version - fix scrollbars

This commit is contained in:
Vadim Lopatin 2017-08-21 14:38:15 +03:00
parent d0b9ff8a0e
commit 8f2686677a
2 changed files with 4 additions and 3 deletions

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
"dependencies": {
"dlangui": "==0.9.90",
"dlangui": "==0.9.93",
"dcd": "~>0.9.1"
},

View File

@ -940,6 +940,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
return;
renameTab(oldfilename, filename);
ed.id = filename;
ed.setSyntaxSupport();
if( filename.endsWith(".d") || filename.endsWith(".di") )
ed.editorTool = new DEditorTool(this);
else
@ -947,9 +948,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
//openSourceFile(filename);
refreshWorkspace();
ProjectSourceFile file = _wsPanel.findSourceFileItem(filename, false);
if (file)
if (file) {
ed.projectSourceFile = file;
else
} else
ed.projectSourceFile = null;
_settings.setRecentPath(dlg.path, "FILE_OPEN_PATH");
}