From 40a1c3032f2b22d01855a4c962a1b99355a9847e Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 12 Jan 2016 13:29:39 +0300 Subject: [PATCH] fix debugger Stack window thread selection combobox handling - close #94 --- README.md | 3 +-- dub.json | 2 +- src/dlangide/ui/debuggerui.d | 3 ++- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a571e27..52edc16 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/dub.json b/dub.json index a9683af..3e46766 100644 --- a/dub.json +++ b/dub.json @@ -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" }, diff --git a/src/dlangide/ui/debuggerui.d b/src/dlangide/ui/debuggerui.d index 0a6286c..72814f2 100644 --- a/src/dlangide/ui/debuggerui.d +++ b/src/dlangide/ui/debuggerui.d @@ -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;