diff options
author | raveit65 <[email protected]> | 2016-06-10 11:32:24 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-06-10 11:32:24 +0200 |
commit | bb63141924bc5cc9f6984f00e2f8e3ae454d475b (patch) | |
tree | 853c60de4bf5147df4fb30a53c490dd5f70ce1dd /src/terminal-screen.c | |
parent | 8a4bdad1cc8f40d3bdfda4e40649ce367e4c6903 (diff) | |
download | mate-terminal-bb63141924bc5cc9f6984f00e2f8e3ae454d475b.tar.bz2 mate-terminal-bb63141924bc5cc9f6984f00e2f8e3ae454d475b.tar.xz |
Remove debug printfs
taken from:
https://git.gnome.org/browse/gnome-terminal/commit/?id=923d74f
Diffstat (limited to 'src/terminal-screen.c')
-rw-r--r-- | src/terminal-screen.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/terminal-screen.c b/src/terminal-screen.c index 607a4f1..38021dc 100644 --- a/src/terminal-screen.c +++ b/src/terminal-screen.c @@ -1035,10 +1035,8 @@ update_color_scheme (TerminalScreen *screen) context = gtk_widget_get_style_context (GTK_WIDGET (screen)); gtk_style_context_get_color (context, GTK_STATE_FLAG_NORMAL, &rgba); rgba_to_color (&fg, &rgba); - g_print ("fg %g,%g,%g ", rgba.red, rgba.green, rgba.blue); gtk_style_context_get_background_color (context, GTK_STATE_FLAG_NORMAL, &rgba); rgba_to_color (&bg, &rgba); - g_print ("bg %g,%g,%g\n", rgba.red, rgba.green, rgba.blue); bold_color = NULL; |