mirror of https://github.com/buggins/dlangide.git
update dlangui dep; fix debug console usage under windows
This commit is contained in:
parent
ac58083940
commit
3b67751e27
2
dub.json
2
dub.json
|
@ -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"
|
||||
},
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue