File: 0001-Corrected-log-deletion-bug.patch

package info (click to toggle)
pyqso 1.1.0-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,836 kB
  • sloc: python: 4,225; makefile: 151; sh: 18
file content (24 lines) | stat: -rw-r--r-- 706 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From 5efe5849ff6b45ade4f31d636cc9bdd09ee63b01 Mon Sep 17 00:00:00 2001
From: WB5VQX <wb5vqx@yahoo.com>
Date: Sat, 16 Feb 2019 20:58:59 -0600
Subject: [PATCH 1/4] Corrected log deletion bug.

---
 pyqso/logbook.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pyqso/logbook.py b/pyqso/logbook.py
index 00ff396..972e784 100644
--- a/pyqso/logbook.py
+++ b/pyqso/logbook.py
@@ -345,6 +345,7 @@ class Logbook:
             self.sorter.pop(log_index)
             self.filter.pop(log_index)
             # And finally remove the tab in the Logbook.
+            self.notebook.set_current_page(page_index - 1)
             self.notebook.remove_page(page_index)
 
         self.summary.update()
-- 
2.45.2