update dlangui dep; fix debug console usage under windows

This commit is contained in:
Vadim Lopatin 2016-09-14 14:16:31 +03:00
parent ac58083940
commit 3b67751e27
3 changed files with 7 additions and 6 deletions

View File

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

View File

@ -266,7 +266,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
string tty = _logPanel.terminalDeviceName;
if (project.runInExternalConsole) {
version(Windows) {
if (program.isMagoDebugger && BACKEND_GUI)
if (program.isMagoDebugger)
tty = "external-console";
} else {
externalConsoleExecutable = _settings.terminalExecutable;

View File

@ -11,15 +11,16 @@ import std.regex;
import std.algorithm : startsWith;
import std.string;
static if (BACKEND_CONSOLE) {
enum ENABLE_INTERNAL_TERMINAL = true;
} else {
//static if (BACKEND_CONSOLE) {
// enum ENABLE_INTERNAL_TERMINAL = true;
//} else {
version (Windows) {
enum ENABLE_INTERNAL_TERMINAL = false;
} else {
enum ENABLE_INTERNAL_TERMINAL = true;
}
}
//}
enum ENABLE_INTERNAL_TERMINAL_TEST = false;
/// event listener to navigate by error/warning position