ide/Debugger, CallStackView: Fixed long standing callstack woes
[sdk] / ide / src / panels / CallStackView.ec
index 7544ed0..a65f843 100644 (file)
@@ -36,7 +36,7 @@ class CallStackView : Window
          if(strcmp(editBox.line.text, "..."))
             frameIndex = atoi(editBox.line.text);
          OnSelectFrame(frameIndex);
-         return true;
+         return false;
       }
 
       bool NotifyKeyDown(EditBox editBox, Key key, unichar ch)
@@ -153,6 +153,7 @@ class CallStackView : Window
    void Show()
    {
       visible = true;
+      ide.RepositionWindows(false);
       Activate();
    }
 }