Skip to content

Commit

Permalink
logviewer bold
Browse files Browse the repository at this point in the history
  • Loading branch information
hjoliver committed Apr 14, 2018
1 parent 0ed5198 commit 5440892
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions lib/cylc/gui/logviewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

import gtk
import os
from cylc.gui.tailer import Tailer
from cylc.gui.warning_dialog import warning_dialog
import pango

Expand Down Expand Up @@ -51,11 +50,6 @@ def clear(self):
s, e = logbuffer.get_bounds()
logbuffer.delete(s, e)

def connect(self):
# TODO , self.path()
self.t = Tailer(self.logview)
self.t.start()

def quit_w_e(self, w, e):
self.t.stop()

Expand Down Expand Up @@ -129,7 +123,7 @@ def create_gui_panel(self):
self.logview.set_editable(False)
# Use a monospace font. This is safe - by testing - setting an
# illegal font description has no effect.
self.logview.modify_font(pango.FontDescription("monospace"))
self.logview.modify_font(pango.FontDescription("monospace bold"))

searchbox = gtk.HBox()
entry = gtk.Entry()
Expand Down

0 comments on commit 5440892

Please sign in to comment.