From b9901196dbeea6bf4fafe1a7982f8e18c7a2caa8 Mon Sep 17 00:00:00 2001 From: "Christian T. Jacobs" Date: Sat, 28 May 2016 16:56:37 +0100 Subject: [PATCH] Changed canvas size to 800 x 250. --- docs/source/toolbox.rst | 2 +- pyqso/logbook.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/toolbox.rst b/docs/source/toolbox.rst index f669b79..29fcb84 100644 --- a/docs/source/toolbox.rst +++ b/docs/source/toolbox.rst @@ -18,7 +18,7 @@ cluster rather than trying to parse it in some way. Click on ``Connect to Telnet Server`` then ``New...`` in the ``Connection`` menu, and enter the DX server details in the dialog that appears. If no port is specified, PyQSO will use the default value of 23. A username and password may also need to be -supplied. Frequently used servers can be bookmarked for next time. +supplied. Frequently used servers can be bookmarked for next time; bookmarked server details are stored in ``~/.config/pyqso/bookmarks.ini``, where ``~`` denotes the user's home directory. Once connected, the server output will appear in the DX cluster frame (see figure:dx_cluster_). A command can also diff --git a/pyqso/logbook.py b/pyqso/logbook.py index c529e03..4c0baa2 100644 --- a/pyqso/logbook.py +++ b/pyqso/logbook.py @@ -313,7 +313,7 @@ class Logbook(Gtk.Notebook): self.summary["YEARLY_STATISTICS"] = Figure() canvas = FigureCanvas(self.summary["YEARLY_STATISTICS"]) - canvas.set_size_request(400, 400) + canvas.set_size_request(800, 250) canvas.show() vbox.pack_start(canvas, True, True, 4)