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

Commit

Permalink
commented debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
cepko33 committed Sep 3, 2014
1 parent 64d5dd4 commit ea3102f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TerminalOutput.vala
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public class TerminalOutput : Gee.ArrayList<OutputLine> {
public void parse_stream_element(TerminalStream.StreamElement stream_element) {
switch (stream_element.stream_element_type) {
case TerminalStream.StreamElement.StreamElementType.TEXT:
message(_("Text sequence received: '%s'"), stream_element.text);
//message(_("Text sequence received: '%s'"), stream_element.text);

// Print only text that has not been printed yet
string text_left = stream_element.text.substring(
Expand Down Expand Up @@ -124,8 +124,8 @@ public class TerminalOutput : Gee.ArrayList<OutputLine> {
// This code causes a line feed or a new line operation
// TODO: Does LF always imply CR?
move_cursor(cursor_position.line + 1, 0);
terminal.terminal_view.terminal_output_view.add_line_views();
terminal.terminal_view.terminal_output_view.scroll_to_position();
//terminal.terminal_view.terminal_output_view.add_line_views();
//terminal.terminal_view.terminal_output_view.scroll_to_position();
break;

case TerminalStream.StreamElement.ControlSequenceType.HORIZONTAL_TAB:
Expand Down

0 comments on commit ea3102f

Please sign in to comment.