Commit: 4c746bb3b02552a4571cb7bb2369185f86a66935
Author: Dalai Felinto
Date:   Thu Mar 9 19:21:08 2017 +0100
Branches: blender2.8
https://developer.blender.org/rB4c746bb3b02552a4571cb7bb2369185f86a66935

Immediate Mode: Updated commented out code from textview.c

===================================================================

M       source/blender/editors/space_info/textview.c

===================================================================

diff --git a/source/blender/editors/space_info/textview.c 
b/source/blender/editors/space_info/textview.c
index bc9d7365e4e..1872a8a0545 100644
--- a/source/blender/editors/space_info/textview.c
+++ b/source/blender/editors/space_info/textview.c
@@ -207,7 +207,7 @@ static int console_draw_string(ConsoleDrawContext *cdc, 
const char *str, int str
 
                if (cdc->sel[0] != cdc->sel[1]) {
                        console_step_sel(cdc, -initial_offset);
-                       // glColor4ub(255, 0, 0, 96); // debug
+                       /* BLF_color3ub(cdc->font_id, 255, 0, 0); // debug */
                        console_draw_sel(s, cdc->sel, cdc->xy, len, 
cdc->cwidth, cdc->lheight, bg_sel);
                }
 
@@ -222,7 +222,7 @@ static int console_draw_string(ConsoleDrawContext *cdc, 
const char *str, int str
                        
                        if (cdc->sel[0] != cdc->sel[1]) {
                                console_step_sel(cdc, len);
-                               // glColor4ub(0, 255, 0, 96); // debug
+                               /* BLF_color3ub(cdc->font_id, 0, 255, 0); // 
debug */
                                console_draw_sel(s, cdc->sel, cdc->xy, len, 
cdc->cwidth, cdc->lheight, bg_sel);
                        }
 
@@ -261,7 +261,7 @@ static int console_draw_string(ConsoleDrawContext *cdc, 
const char *str, int str
                        isel[0] = str_len - cdc->sel[1];
                        isel[1] = str_len - cdc->sel[0];
 
-                       // glColor4ub(255, 255, 0, 96); // debug
+                       /* BLF_color3ub(cdc->font_id, 255, 255, 0); // debug */
                        console_draw_sel(str, isel, cdc->xy, str_len, 
cdc->cwidth, cdc->lheight, bg_sel);
                        console_step_sel(cdc, -(str_len + 1));
                }

_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to