fix crash

This commit is contained in:
Vadim Lopatin 2015-12-17 11:59:43 +03:00
parent 611c2f2cb7
commit 17195a81f5
1 changed files with 4 additions and 3 deletions
src/dlangide/ui

View File

@ -25,9 +25,9 @@ class VariablesWindow : StringGridWidget {
class WatchPanel : DockWindow { class WatchPanel : DockWindow {
this(string id) { this(string id) {
_showCloseButton = false;
dockAlignment = DockAlignment.Bottom;
super(id); super(id);
_caption.text = "Watch"d;
_showCloseButton = false;
} }
protected TabWidget _tabs; protected TabWidget _tabs;
@ -52,7 +52,8 @@ class WatchPanel : DockWindow {
override protected void init() { override protected void init() {
//styleId = STYLE_DOCK_WINDOW; //styleId = STYLE_DOCK_WINDOW;
styleId = null; styleId = null;
_bodyWidget = createBodyWidget(); //_caption.text = "Watch"d;
_bodyWidget = createBodyWidget();
//_bodyWidget.styleId = STYLE_DOCK_WINDOW_BODY; //_bodyWidget.styleId = STYLE_DOCK_WINDOW_BODY;
addChild(_bodyWidget); addChild(_bodyWidget);
} }