Mercurial > pidgin
changeset 4451:ce5b64fac95d
[gaim-migrate @ 4726]
Fixed bug introduced by new browser_page code. Please in future check to see if your changes affect _WIN32 code..
committer: Tailor Script <tailor@pidgin.im>
author | Herman Bloggs <hermanator12002@yahoo.com> |
---|---|
date | Tue, 28 Jan 2003 18:49:42 +0000 |
parents | 2f225b92a933 |
children | 2afc0f845e74 |
files | src/prefs.c |
diffstat | 1 files changed, 6 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/prefs.c Tue Jan 28 18:37:05 2003 +0000 +++ b/src/prefs.c Tue Jan 28 18:49:42 2003 +0000 @@ -889,16 +889,17 @@ g_signal_connect(GTK_OBJECT(label), "clicked", G_CALLBACK(manual_browser_reset), browser_entry); -#endif /* end !_WIN32 */ if (browsers != NULL) { vbox = make_frame (ret, _("Browser Options")); label = gaim_button(_("Open new _window by default"), &misc_options, OPT_MISC_BROWSER_POPUP, vbox); } -#ifdef _WIN32 - /* Until I figure out how to implement this on windows */ - gtk_widget_set_sensitive(label, FALSE); -#endif +#else + /* For windows, we need to implement the ability for URLs to be opened + * in new windows. Currently, existing open windows are being used. + */ +#endif /*_WIN32*/ + gtk_widget_show_all(ret); return ret; }