Mercurial > audlegacy-plugins
changeset 920:c84c20155e00 trunk
[svn] - statusicon: fix preferences window name
author | giacomo |
---|---|
date | Fri, 06 Apr 2007 12:38:11 -0700 |
parents | d16737cc85f6 |
children | 8b0850943335 |
files | ChangeLog src/statusicon/si_ui.c |
diffstat | 2 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Fri Apr 06 12:34:10 2007 -0700 +++ b/ChangeLog Fri Apr 06 12:38:11 2007 -0700 @@ -1,3 +1,10 @@ +2007-04-06 19:34:10 +0000 Giacomo Lozito <james@develia.org> + revision [1966] + - statusicon: invert skip direction in mouse wheel; much better this way + trunk/src/statusicon/si_ui.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + + 2007-04-06 18:47:07 +0000 Giacomo Lozito <james@develia.org> revision [1964] - statusicon: add an option to use mouse wheel to change playing song instead of volume
--- a/src/statusicon/si_ui.c Fri Apr 06 12:34:10 2007 -0700 +++ b/src/statusicon/si_ui.c Fri Apr 06 12:38:11 2007 -0700 @@ -608,7 +608,7 @@ prefs_win = gtk_window_new( GTK_WINDOW_TOPLEVEL ); gtk_window_set_type_hint( GTK_WINDOW(prefs_win), GDK_WINDOW_TYPE_HINT_DIALOG ); gtk_window_set_position( GTK_WINDOW(prefs_win), GTK_WIN_POS_CENTER ); - gtk_window_set_title( GTK_WINDOW(prefs_win), _("Audacious OSD - Preferences") ); + gtk_window_set_title( GTK_WINDOW(prefs_win), _("Status Icon Plugin - Preferences") ); gtk_container_set_border_width( GTK_CONTAINER(prefs_win) , 10 ); prefs_win_hints.min_width = 320; prefs_win_hints.min_height = -1;