void-packages/srcpkgs/laditools/patches/vte3.patch
Alessio Sergi 6ca47bd1c1 laditools: fix broken template
- noarch=yes
- add missing pycompile_module
- needs gtk+3/python-gobject, not gtk+2/pygtk (fork of LADI/laditools)
- add patch to support vte>=0.52
2018-10-18 18:40:53 +02:00

21 lines
948 B
Diff

Support for vte >= 0.52.
See https://bugs.launchpad.net/ubuntu/+source/laditools/+bug/1669111.
--- ladi-system-log.orig 2015-09-13 23:38:51.000000000 +0200
+++ ladi-system-log 2018-10-17 18:04:59.687899590 +0200
@@ -190,13 +190,13 @@
def on_clear_text (self, data=None):
current_view = self.logview_notebook.get_current_page ()
- self.log_files[current_view]["term"].feed ("\033[2J\033[;f", -1)
+ self.log_files[current_view]["term"].feed ("\033[2J\033[;f")
def on_purge (self, data=None):
current_view = self.logview_notebook.get_current_page ()
# Opens the file in write anew mode thus clearing the file and close it right away
open (self.log_files[current_view]['logfile_path'], "w+")
- self.log_files[current_view]["term"].feed ("\033[2J\033[;f", -1)
+ self.log_files[current_view]["term"].feed ("\033[2J\033[;f")
def run (self):
self.ui.show_all()