Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
muriloventuroso committed Aug 22, 2018
1 parent 107517d commit 79fca42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Widgets/TerminalBox.vala
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ namespace EasySSH {
private void term_send(string cmd) {
var n_cmd = cmd + "\n";
#if UBUNTU_BIONIC_PATCHED_VTE
term.feed_child(cmd, cmd.length);
term.feed_child(n_cmd, cmd.length);
#else
term.feed_child(cmd.to_utf8 ());
term.feed_child(n_cmd.to_utf8 ());
#endif
}

Expand Down

0 comments on commit 79fca42

Please sign in to comment.