changeset 593:37dd78318a2e

[gaim-migrate @ 603] Wagii committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Thu, 03 Aug 2000 08:54:41 +0000
parents 7c75d69a1129
children 824114726aac
files ChangeLog src/dialogs.c
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Aug 03 05:35:13 2000 +0000
+++ b/ChangeLog	Thu Aug 03 08:54:41 2000 +0000
@@ -7,6 +7,8 @@
 	* Fixed 0-byte file segfault.
 	* Borderless buttons (for that cool pop-up look)
 	* Fixed resizing bugs
+	* Added Ctrl+{B/I/U/S} hotkeys to conversation windows.
+	* Support for %n, %d, and %t in away messages.  Thanks bmiller!
 	
 version 0.9.20 (07/14/2000):
 	* More plugin events, more plugin features
--- a/src/dialogs.c	Thu Aug 03 05:35:13 2000 +0000
+++ b/src/dialogs.c	Thu Aug 03 08:54:41 2000 +0000
@@ -3522,6 +3522,7 @@
 
 	gtk_widget_show(button);
 
+	gtk_widget_set_usize(button, 80, 30);
 	gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 5);
 
 	/* End of our create button code */
@@ -3547,8 +3548,9 @@
 	if (display_options & OPT_DISP_COOL_LOOK)
 		gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE);
 		
+
 	gtk_widget_show(button);
-
+	gtk_widget_set_usize(button, 80, 30);
 	gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 5);
 
 	/* End of our cancel button code */