From 3c8f770d93b3d251c665cece1c4fbae7761688a3 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Fri, 18 Dec 2015 15:14:58 +0300 Subject: [PATCH] fixes --- src/dlangide.d | 18 ++---------------- src/dlangide/ui/debuggerui.d | 7 +++---- src/dlangide/ui/watchpanel.d | 12 ++++++++++++ 3 files changed, 17 insertions(+), 20 deletions(-) diff --git a/src/dlangide.d b/src/dlangide.d index cacf705..cc6af61 100644 --- a/src/dlangide.d +++ b/src/dlangide.d @@ -31,7 +31,7 @@ extern (C) int UIAppMain(string[] args) { version (USE_OPENGL) { // you can turn on subpixel font rendering (ClearType) here FontManager.subpixelRenderingMode = SubpixelRenderingMode.None; // - FontManager.fontGamma = 0.8; + FontManager.fontGamma = 0.9; FontManager.hintingMode = HintingMode.AutoHint; } else { version (USE_FREETYPE) { @@ -42,20 +42,6 @@ extern (C) int UIAppMain(string[] args) { } } - //import ddc.lexer.tokenizer; - //runTokenizerTest(); - //debug(DebugInfo) { - // version(USE_MAGO) { - // import ddebug.windows.mago; - // testMago(); - // } - // version(Windows) { - // import ddebug.windows.debuginfo; - // import std.file; - // //debugInfoTest(thisExePath); - // } - //} - //version(USE_WIN_DEBUG) { // debuggerTest(); //} @@ -64,7 +50,7 @@ extern (C) int UIAppMain(string[] args) { //} // create window - Window window = Platform.instance.createWindow("Dlang IDE", null, WindowFlag.Resizable, 800, 600); + Window window = Platform.instance.createWindow("Dlang IDE", null, WindowFlag.Resizable, 1000, 800); // set window icon window.windowIcon = drawableCache.getImage("dlangui-logo1"); diff --git a/src/dlangide/ui/debuggerui.d b/src/dlangide/ui/debuggerui.d index 55d865b..383951d 100644 --- a/src/dlangide/ui/debuggerui.d +++ b/src/dlangide/ui/debuggerui.d @@ -49,10 +49,9 @@ class DebuggerUIHandler : DebuggerCallback, StackFrameSelectedHandler { void onStackFrameSelected(ulong threadId, int frame) { if (_debugInfo) { if (DebugThread t = _debugInfo.findThread(threadId)) { - if (frame < t.length) - updateLocation(t[frame]); - else - updateLocation(t.frame); + DebugFrame f = (frame < t.length) ? t[frame] : t.frame; + updateLocation(f); + _debugger.requestDebugContextInfo(threadId, frame); } } } diff --git a/src/dlangide/ui/watchpanel.d b/src/dlangide/ui/watchpanel.d index b3311d3..7916918 100644 --- a/src/dlangide/ui/watchpanel.d +++ b/src/dlangide/ui/watchpanel.d @@ -35,6 +35,18 @@ class VariablesWindow : StringGridWidget { autoFit(); } } + + override void layout(Rect rc) { + if (visibility == Visibility.Gone) { + return; + } + super.layout(rc); + int cw = clientRect.width; + setColWidth(1, cw * 40 / 100); + setColWidth(2, cw * 45 / 100); + setColWidth(3, cw * 25 / 100); + super.layout(_pos); + } } class WatchPanel : DockWindow {