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"],
|
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dlangui": "==0.9.4",
|
"dlangui": "==0.9.5",
|
||||||
"dcd": "~>0.8.0"
|
"dcd": "~>0.8.0"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -266,7 +266,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
string tty = _logPanel.terminalDeviceName;
|
string tty = _logPanel.terminalDeviceName;
|
||||||
if (project.runInExternalConsole) {
|
if (project.runInExternalConsole) {
|
||||||
version(Windows) {
|
version(Windows) {
|
||||||
if (program.isMagoDebugger && BACKEND_GUI)
|
if (program.isMagoDebugger)
|
||||||
tty = "external-console";
|
tty = "external-console";
|
||||||
} else {
|
} else {
|
||||||
externalConsoleExecutable = _settings.terminalExecutable;
|
externalConsoleExecutable = _settings.terminalExecutable;
|
||||||
|
|
|
@ -11,15 +11,16 @@ import std.regex;
|
||||||
import std.algorithm : startsWith;
|
import std.algorithm : startsWith;
|
||||||
import std.string;
|
import std.string;
|
||||||
|
|
||||||
static if (BACKEND_CONSOLE) {
|
//static if (BACKEND_CONSOLE) {
|
||||||
enum ENABLE_INTERNAL_TERMINAL = true;
|
// enum ENABLE_INTERNAL_TERMINAL = true;
|
||||||
} else {
|
//} else {
|
||||||
version (Windows) {
|
version (Windows) {
|
||||||
enum ENABLE_INTERNAL_TERMINAL = false;
|
enum ENABLE_INTERNAL_TERMINAL = false;
|
||||||
} else {
|
} else {
|
||||||
enum ENABLE_INTERNAL_TERMINAL = true;
|
enum ENABLE_INTERNAL_TERMINAL = true;
|
||||||
}
|
}
|
||||||
}
|
//}
|
||||||
|
|
||||||
enum ENABLE_INTERNAL_TERMINAL_TEST = false;
|
enum ENABLE_INTERNAL_TERMINAL_TEST = false;
|
||||||
|
|
||||||
/// event listener to navigate by error/warning position
|
/// event listener to navigate by error/warning position
|
||||||
|
|
Loading…
Reference in New Issue