This repository was archived by the owner on Nov 11, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ public class TerminalOutput : Gee.ArrayList<OutputLine> {
91
91
public void parse_stream_element (TerminalStream .StreamElement stream_element ) {
92
92
switch (stream_element. stream_element_type) {
93
93
case TerminalStream . StreamElement . StreamElementType . TEXT:
94
- message(_(" Text sequence received: '%s '" ), stream_element. text);
94
+ // message(_("Text sequence received: '%s'"), stream_element.text);
95
95
96
96
// Print only text that has not been printed yet
97
97
string text_left = stream_element. text. substring(
@@ -124,8 +124,8 @@ public class TerminalOutput : Gee.ArrayList<OutputLine> {
124
124
// This code causes a line feed or a new line operation
125
125
// TODO: Does LF always imply CR?
126
126
move_cursor(cursor_position. line + 1 , 0 );
127
- terminal. terminal_view. terminal_output_view. add_line_views();
128
- terminal. terminal_view. terminal_output_view. scroll_to_position();
127
+ // terminal.terminal_view.terminal_output_view.add_line_views();
128
+ // terminal.terminal_view.terminal_output_view.scroll_to_position();
129
129
break ;
130
130
131
131
case TerminalStream . StreamElement . ControlSequenceType . HORIZONTAL_TAB:
You can’t perform that action at this time.
0 commit comments