Changed canvas size to 800 x 250.

pull/51/head
Christian T. Jacobs 2016-05-28 16:56:37 +01:00
rodzic 238564d044
commit b9901196db
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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)