Skip to content
This repository was archived by the owner on Nov 11, 2018. It is now read-only.

Commit ea3102f

Browse files
committed
commented debug message
1 parent 64d5dd4 commit ea3102f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/TerminalOutput.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public class TerminalOutput : Gee.ArrayList<OutputLine> {
9191
public void parse_stream_element(TerminalStream.StreamElement stream_element) {
9292
switch (stream_element.stream_element_type) {
9393
case TerminalStream.StreamElement.StreamElementType.TEXT:
94-
message(_("Text sequence received: '%s'"), stream_element.text);
94+
//message(_("Text sequence received: '%s'"), stream_element.text);
9595

9696
// Print only text that has not been printed yet
9797
string text_left = stream_element.text.substring(
@@ -124,8 +124,8 @@ public class TerminalOutput : Gee.ArrayList<OutputLine> {
124124
// This code causes a line feed or a new line operation
125125
// TODO: Does LF always imply CR?
126126
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();
129129
break;
130130

131131
case TerminalStream.StreamElement.ControlSequenceType.HORIZONTAL_TAB:

0 commit comments

Comments
 (0)