# HG changeset patch # User giacomo # Date 1175888291 25200 # Node ID c84c20155e0042581fd07276400abef5b9fb2ce8 # Parent d16737cc85f6d0cc247218864683e4ed44f69118 [svn] - statusicon: fix preferences window name diff -r d16737cc85f6 -r c84c20155e00 ChangeLog --- 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 + 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 revision [1964] - statusicon: add an option to use mouse wheel to change playing song instead of volume diff -r d16737cc85f6 -r c84c20155e00 src/statusicon/si_ui.c --- 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;