fix debugger Stack window thread selection combobox handling - close #94

This commit is contained in:
Vadim Lopatin 2016-01-12 13:29:39 +03:00
parent 28b699e824
commit 40a1c3032f
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/buggins/dlangide.svg?branch=master)](https://travis-ci.org/buggins/dlangide)
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/buggins/dlangide?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/buggins/dlangide.svg?branch=master)](https://travis-ci.org/buggins/dlangide) [![PayPayl donate button](https://img.shields.io/badge/paypal-donate-yellow.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H2ADZV8S6TDHQ "Donate once-off to this project using Paypal")
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)
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/buggins/dlangide?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/buggins/dlangide.svg?branch=master)](https://travis-ci.org/buggins/dlangide) [![PayPayl donate button](https://img.shields.io/badge/paypal-donate-yellow.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H2ADZV8S6TDHQ "Donate once-off to this project using Paypal")
DCD integration

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
"dependencies": {
"dlangui": "~>0.7.34",
"dlangui": "~>0.7.36",
"dcd": "~>0.7.5-3"
},

View File

@ -40,13 +40,14 @@ class DebuggerUIHandler : DebuggerCallback, StackFrameSelectedHandler {
/// send debug context (threads, stack frames, local vars...)
void onDebugContextInfo(DebugThreadList info, ulong threadId, int frameId) {
Log.d("Debugger context received");
Log.d("Debugger context received threadId=", threadId, " frameId=", frameId);
_debugInfo = info;
_stackPanel.updateDebugInfo(info, threadId, frameId);
_watchPanel.updateDebugInfo(info, threadId, frameId);
}
void onStackFrameSelected(ulong threadId, int frame) {
Log.d("Stack frame selected threadId=", threadId, " frameId=", frame);
if (_debugInfo) {
if (DebugThread t = _debugInfo.findThread(threadId)) {
DebugFrame f = (frame < t.length) ? t[frame] : t.frame;