# HG changeset patch # User giacomo # Date 1170083298 28800 # Node ID 7f0318090690ecc4a1f51b2c1b46683a80889967 # Parent f2b3d6428b6715d76c697664bf51e010a2d3da4c [svn] - set the gtk2 fileopener position to the center of the screen diff -r f2b3d6428b67 -r 7f0318090690 ChangeLog --- a/ChangeLog Sun Jan 28 22:19:02 2007 -0800 +++ b/ChangeLog Mon Jan 29 07:08:18 2007 -0800 @@ -1,3 +1,11 @@ +2007-01-29 06:19:02 +0000 Daniel Barkalow + revision [3888] + Allow input plugin that implements get_volume to punt to the output plugin. + + trunk/src/audacious/input.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + + 2007-01-29 06:09:12 +0000 Daniel Barkalow revision [3886] Provide flags in InputPlayback for common plugin flag needs, and provide a diff -r f2b3d6428b67 -r 7f0318090690 src/audacious/ui_fileopener.c --- a/src/audacious/ui_fileopener.c Sun Jan 28 22:19:02 2007 -0800 +++ b/src/audacious/ui_fileopener.c Mon Jan 29 07:08:18 2007 -0800 @@ -134,6 +134,7 @@ window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_title(GTK_WINDOW(window), window_title); gtk_window_set_default_size(GTK_WINDOW(window), 700, 450); + gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); gtk_container_set_border_width(GTK_CONTAINER(window), 10); vbox = gtk_vbox_new(FALSE, 0);