# HG changeset patch # User Herman Bloggs # Date 1043195729 0 # Node ID af485b4bb8c18b179c87af0b2d17b39ff2bafbff # Parent fe465b7d9440f4c01a017c3a4e6806a8bba91357 [gaim-migrate @ 4647] win32 fix for buddy win resize bug committer: Tailor Script diff -r fe465b7d9440 -r af485b4bb8c1 src/gaimrc.c --- a/src/gaimrc.c Tue Jan 21 22:07:10 2003 +0000 +++ b/src/gaimrc.c Wed Jan 22 00:35:29 2003 +0000 @@ -1364,7 +1364,10 @@ { FILE *f; char buf[BUF_LONG]; - debug_printf("enter save_prefs\n"); +#ifndef _WIN32 + /* g_print breaks buddy win resizing */ + debug_printf("enter save_prefs\n"); +#endif if (is_loading_prefs) { request_save_prefs = 1; debug_printf("currently loading, will request save\n"); @@ -1404,7 +1407,10 @@ load_prefs(); request_load_prefs = 0; } +#ifndef _WIN32 + /* g_print breaks buddy win resizing */ debug_printf("exit save_prefs\n"); +#endif }