mirror of
https://github.com/alexkay/spek.git
synced 2025-04-19 01:47:37 +03:00
Fix description in the about dialogue
This commit is contained in:
parent
5f45726be5
commit
9db2524bdf
@ -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;
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user