mirror of https://github.com/buggins/dlangide.git
fix debugger Stack window thread selection combobox handling - close #94
This commit is contained in:
parent
28b699e824
commit
40a1c3032f
|
@ -1,4 +1,4 @@
|
||||||
[](https://travis-ci.org/buggins/dlangide)
|
[](https://gitter.im/buggins/dlangide?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [](https://travis-ci.org/buggins/dlangide) [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H2ADZV8S6TDHQ "Donate once-off to this project using Paypal")
|
||||||
|
|
||||||
Dlang IDE
|
Dlang IDE
|
||||||
=========
|
=========
|
||||||
|
@ -38,7 +38,6 @@ GitHub page: [https://github.com/buggins/dlangide](https://github.com/buggins/dl
|
||||||
|
|
||||||
DlangUI project GitHub page: [https://github.com/buggins/dlangui](https://github.com/buggins/dlangui)
|
DlangUI project GitHub page: [https://github.com/buggins/dlangui](https://github.com/buggins/dlangui)
|
||||||
|
|
||||||
[](https://gitter.im/buggins/dlangide?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [](https://travis-ci.org/buggins/dlangide) [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H2ADZV8S6TDHQ "Donate once-off to this project using Paypal")
|
|
||||||
|
|
||||||
|
|
||||||
DCD integration
|
DCD integration
|
||||||
|
|
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.7.34",
|
"dlangui": "~>0.7.36",
|
||||||
"dcd": "~>0.7.5-3"
|
"dcd": "~>0.7.5-3"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -40,13 +40,14 @@ class DebuggerUIHandler : DebuggerCallback, StackFrameSelectedHandler {
|
||||||
|
|
||||||
/// send debug context (threads, stack frames, local vars...)
|
/// send debug context (threads, stack frames, local vars...)
|
||||||
void onDebugContextInfo(DebugThreadList info, ulong threadId, int frameId) {
|
void onDebugContextInfo(DebugThreadList info, ulong threadId, int frameId) {
|
||||||
Log.d("Debugger context received");
|
Log.d("Debugger context received threadId=", threadId, " frameId=", frameId);
|
||||||
_debugInfo = info;
|
_debugInfo = info;
|
||||||
_stackPanel.updateDebugInfo(info, threadId, frameId);
|
_stackPanel.updateDebugInfo(info, threadId, frameId);
|
||||||
_watchPanel.updateDebugInfo(info, threadId, frameId);
|
_watchPanel.updateDebugInfo(info, threadId, frameId);
|
||||||
}
|
}
|
||||||
|
|
||||||
void onStackFrameSelected(ulong threadId, int frame) {
|
void onStackFrameSelected(ulong threadId, int frame) {
|
||||||
|
Log.d("Stack frame selected threadId=", threadId, " frameId=", frame);
|
||||||
if (_debugInfo) {
|
if (_debugInfo) {
|
||||||
if (DebugThread t = _debugInfo.findThread(threadId)) {
|
if (DebugThread t = _debugInfo.findThread(threadId)) {
|
||||||
DebugFrame f = (frame < t.length) ? t[frame] : t.frame;
|
DebugFrame f = (frame < t.length) ? t[frame] : t.frame;
|
||||||
|
|
Loading…
Reference in New Issue