Mercurial > audlegacy
changeset 2557:cacbc968782b trunk
[svn] - Make unplayable files dialog resizable and centered on the screen. (closes #802)
author | nhjm449 |
---|---|
date | Tue, 20 Feb 2007 16:17:08 -0800 |
parents | a221f10fd105 |
children | d4ecf0a91222 |
files | ChangeLog src/audacious/build_stamp.c src/audacious/input.c |
diffstat | 3 files changed, 11 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Tue Feb 20 08:11:40 2007 -0800 +++ b/ChangeLog Tue Feb 20 16:17:08 2007 -0800 @@ -1,3 +1,11 @@ +2007-02-20 16:11:40 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [4122] + - or comparison should be an and comparison + + trunk/src/audacious/util.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2007-02-20 15:35:05 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [4120] - handle MS-DOS line endings.
--- a/src/audacious/build_stamp.c Tue Feb 20 08:11:40 2007 -0800 +++ b/src/audacious/build_stamp.c Tue Feb 20 16:17:08 2007 -0800 @@ -1,2 +1,2 @@ #include <glib.h> -const gchar *svn_stamp = "20070220-4120"; +const gchar *svn_stamp = "20070220-4122";
--- a/src/audacious/input.c Tue Feb 20 08:11:40 2007 -0800 +++ b/src/audacious/input.c Tue Feb 20 16:17:08 2007 -0800 @@ -325,6 +325,8 @@ GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, _(markup)); + gtk_window_set_resizable(GTK_WINDOW(dialog), TRUE); + gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); vbox = gtk_vbox_new(FALSE, 6);