ide/CodeEditor: Customizable color scheme support
[sdk] / ide / src / panels / ThreadsView.ec
index fc45561..24a95ac 100644 (file)
@@ -50,9 +50,12 @@ class ThreadsView : Window
       parent = this, freeCaret = true, autoEmpty = true, multiLine = true, readOnly = true;
       hasVertScroll = true, hasHorzScroll = true, borderStyle = none;
       anchor = { left = 20, right = 0, top = 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)
       {
@@ -133,12 +136,7 @@ class ThreadsView : 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);