From 72fe4a1f1920fdf762fb1e3ec28e8ed1e41af1fb Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Sun, 20 May 2012 11:11:14 +0000 Subject: [PATCH] Added a comment to the about dialog --- src/mixer.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mixer.c b/src/mixer.c index e6ae30f..878cc8c 100644 --- a/src/mixer.c +++ b/src/mixer.c @@ -14,6 +14,8 @@ static char _license[] = "\n" "You should have received a copy of the GNU General Public License\n" "along with this program. If not, see ."; +/* FIXME: + * - on NetBSD sometimes the "mute" control is before the corresponding knob */ @@ -881,6 +883,8 @@ void mixer_about(Mixer * mixer) g_signal_connect(G_OBJECT(mixer->about), "delete-event", G_CALLBACK( _about_on_closex), NULL); desktop_about_dialog_set_authors(mixer->about, _authors); + desktop_about_dialog_set_comments(mixer->about, + _("Volume mixer for the DeforaOS desktop")); desktop_about_dialog_set_copyright(mixer->about, _copyright); desktop_about_dialog_set_license(mixer->about, _license); desktop_about_dialog_set_logo_icon_name(mixer->about, "stock_volume");