Commit ac0a5597 authored by Roman Alifanov's avatar Roman Alifanov

command_runner: some fix

parent 7cac8077
...@@ -19,8 +19,7 @@ class CommandRunner: ...@@ -19,8 +19,7 @@ class CommandRunner:
self.textbuffer.get_insert(), 0, False, 0.0, 1.0) self.textbuffer.get_insert(), 0, False, 0.0, 1.0)
def clear_textview(self): def clear_textview(self):
self.textbuffer.set_text("") GLib.idle_add(self.textbuffer.set_text, "")
self.dialog.logdialog_textview.scroll_to_mark(self.textbuffer.get_insert(), 0, False, 0.0, 1.0)
def remove_ansi_escape_sequences(self, text): def remove_ansi_escape_sequences(self, text):
result = [] result = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment