commit 9db2524bdf1e57b2bbac64c002064b86a66523cc
parent 5f45726be539008b9ecc2a4fa5d67e1ebdf0ca5a
Author: Alexander Kojevnikov <alexander@kojevnikov.com>
Date: Thu, 20 May 2010 20:08:01 +1000
Fix description in the about dialogue
Diffstat:
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/spek-spectrogram.vala b/src/spek-spectrogram.vala
@@ -33,7 +33,7 @@ namespace Spek {
private const int LPAD = 60;
private const int TPAD = 60;
- private const int RPAD = 40;
+ private const int RPAD = 60;
private const int BPAD = 40;
private const int GAP = 10;
private const int RULER = 10;
diff --git a/src/spek-window.vala b/src/spek-window.vala
@@ -22,6 +22,7 @@ using Gtk;
namespace Spek {
public class Window : Gtk.Window {
+ private const string full_title = _("Spek - Acoustic Spectrum Analyser");
private Spectrogram spectrogram;
private string cur_dir;
private FileFilter filter_all;
@@ -32,7 +33,7 @@ namespace Spek {
};
public Window (string? file_name) {
- title = _("Spek - Acoustic Spectrum Analyser");
+ title = full_title;
set_default_icon_name ("spek");
set_default_size (640, 480);
destroy.connect (Gtk.main_quit);
@@ -200,7 +201,7 @@ namespace Spek {
"program-name", "Spek",
"version", Config.PACKAGE_VERSION,
"copyright", _("Copyright \xc2\xa9 2010 Alexander Kojevnikov"),
- "comments", title,
+ "comments", full_title,
"authors", authors,
// "documenters", documenters,
"artists", artists,