mirror of
https://github.com/alexkay/spek.git
synced 2025-06-07 19:03:02 +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 LPAD = 60;
|
||||||
private const int TPAD = 60;
|
private const int TPAD = 60;
|
||||||
private const int RPAD = 40;
|
private const int RPAD = 60;
|
||||||
private const int BPAD = 40;
|
private const int BPAD = 40;
|
||||||
private const int GAP = 10;
|
private const int GAP = 10;
|
||||||
private const int RULER = 10;
|
private const int RULER = 10;
|
||||||
|
@ -22,6 +22,7 @@ using Gtk;
|
|||||||
namespace Spek {
|
namespace Spek {
|
||||||
public class Window : Gtk.Window {
|
public class Window : Gtk.Window {
|
||||||
|
|
||||||
|
private const string full_title = _("Spek - Acoustic Spectrum Analyser");
|
||||||
private Spectrogram spectrogram;
|
private Spectrogram spectrogram;
|
||||||
private string cur_dir;
|
private string cur_dir;
|
||||||
private FileFilter filter_all;
|
private FileFilter filter_all;
|
||||||
@ -32,7 +33,7 @@ namespace Spek {
|
|||||||
};
|
};
|
||||||
|
|
||||||
public Window (string? file_name) {
|
public Window (string? file_name) {
|
||||||
title = _("Spek - Acoustic Spectrum Analyser");
|
title = full_title;
|
||||||
set_default_icon_name ("spek");
|
set_default_icon_name ("spek");
|
||||||
set_default_size (640, 480);
|
set_default_size (640, 480);
|
||||||
destroy.connect (Gtk.main_quit);
|
destroy.connect (Gtk.main_quit);
|
||||||
@ -200,7 +201,7 @@ namespace Spek {
|
|||||||
"program-name", "Spek",
|
"program-name", "Spek",
|
||||||
"version", Config.PACKAGE_VERSION,
|
"version", Config.PACKAGE_VERSION,
|
||||||
"copyright", _("Copyright \xc2\xa9 2010 Alexander Kojevnikov"),
|
"copyright", _("Copyright \xc2\xa9 2010 Alexander Kojevnikov"),
|
||||||
"comments", title,
|
"comments", full_title,
|
||||||
"authors", authors,
|
"authors", authors,
|
||||||
// "documenters", documenters,
|
// "documenters", documenters,
|
||||||
"artists", artists,
|
"artists", artists,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user