From 3243268ab42420a032107bb7fd5b4db242f4062b Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Sun, 21 Feb 2021 10:37:44 +0100 Subject: Add clean infoscreen patch, release 3.0.5-6 --- .../0015-clean-infoscreen-before-new-scan.patch | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 debian/patches/0015-clean-infoscreen-before-new-scan.patch (limited to 'debian/patches/0015-clean-infoscreen-before-new-scan.patch') diff --git a/debian/patches/0015-clean-infoscreen-before-new-scan.patch b/debian/patches/0015-clean-infoscreen-before-new-scan.patch new file mode 100644 index 0000000..8ba234c --- /dev/null +++ b/debian/patches/0015-clean-infoscreen-before-new-scan.patch @@ -0,0 +1,35 @@ +From d8d83031d9d42d64e89388c842056031c6dad27c Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?=C3=98ystein=20Hi=C3=A5sen?= +Date: Mon, 15 Feb 2021 20:32:01 +0100 +Subject: [PATCH] InfoScreen: Remove old lines before scanning again + +--- + InfoScreen.c | 8 ++++++-- + 1 file changed, 6 insertions(+), 2 deletions(-) + +--- a/InfoScreen.c ++++ b/InfoScreen.c +@@ -145,8 +145,10 @@ + break; + case KEY_F(5): + clear(); +- if (As_InfoScreen(this)->scan) ++ if (As_InfoScreen(this)->scan) { ++ Vector_prune(this->lines); + InfoScreen_scan(this); ++ } + + InfoScreen_draw(this); + break; +@@ -161,8 +163,10 @@ + break; + case KEY_RESIZE: + Panel_resize(panel, COLS, LINES - 2); +- if (As_InfoScreen(this)->scan) ++ if (As_InfoScreen(this)->scan) { ++ Vector_prune(this->lines); + InfoScreen_scan(this); ++ } + + InfoScreen_draw(this); + break; -- cgit v1.2.3