ide/CodeEditor: Customizable color scheme support
[sdk] / ide / src / panels / CallStackView.ec
index 4ede620..8f0e3c3 100644 (file)
@@ -26,9 +26,12 @@ class CallStackView : Window
       parent = this, freeCaret = true, autoEmpty = true, multiLine = true, readOnly = true;
       hasVertScroll = true, hasHorzScroll = true, borderStyle = none;
       anchor = Anchor { left = 20, top = 0, right = 0, bottom = 0 };
-      background = viewsBackground;
-      foreground = viewsText;
-      selectionColor = selectionColor, selectionText = selectionText;
+      /*
+      background = colorScheme.viewsBackground;
+      foreground = colorScheme.viewsText;
+      selectionColor = colorScheme.selectionColor;
+      selectionText = colorScheme.selectionText;
+      */
 
       bool NotifyDoubleClick(EditBox editBox, EditLine line, Modifiers mods)
       {
@@ -109,12 +112,7 @@ class CallStackView : Window
 
       Log(string);
    }
-   void LogSprintf(const char * entry)
-   {
-      char string[MAX_F_STRING];
-      sprintf(string, entry);
-      Log(string);
-   }
+
    void LogRaw(const char * entry)
    {
       Log(entry);