From 64cb2b2c1539d4693e5dda01549b6c8b90baed6f Mon Sep 17 00:00:00 2001 From: "Christian T. Jacobs" Date: Sat, 15 Apr 2017 00:59:21 +0100 Subject: [PATCH] Comment updates. --- pyqso/logbook.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyqso/logbook.py b/pyqso/logbook.py index 0ce52e3..f4e5d5a 100644 --- a/pyqso/logbook.py +++ b/pyqso/logbook.py @@ -488,7 +488,7 @@ class Logbook: if(page_index == 0): # If we are on the Summary page... logging.debug("No log currently selected!") return - page = self.notebook.get_nth_page(page_index) # Gets the Gtk.VBox of the selected tab in the logbook + page = self.notebook.get_nth_page(page_index) # Gets the Gtk.VBox of the selected tab in the logbook. old_log_name = page.get_name() log_index = self.get_log_index(name=old_log_name) @@ -509,10 +509,10 @@ class Logbook: ln.dialog.destroy() return - # Remember to change the page's name + # Remember to change the page's name ... page.set_name(self.logs[log_index].name) - # ...and update the tab's label + # ... and update the tab's label. hbox = Gtk.HBox(False, 0) label = Gtk.Label(new_log_name) hbox.pack_start(label, False, False, 0)