Fix description in the about dialogue

This commit is contained in:
Alexander Kojevnikov 2010-05-20 20:08:01 +10:00
parent 5f45726be5
commit 9db2524bdf
2 changed files with 4 additions and 3 deletions

View File

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

View File

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