# HG changeset patch # User Etan Reisner # Date 1103421644 0 # Node ID 566177590bd52493f374c0f7d21656fab109410d # Parent 3cf69ffdc25ebab560f6b1dfcb33a7b9cafe41ed [gaim-migrate @ 11627] The typing icon was bigger than my menu text so every time someone started typing the contents of my window moved down and then moved back up when it went away. I'm going to assume this won't mess up anyone's conversation windows, if it does I'll just figure out some other way to fix it. Oh, and I guess this is my first commit. Hi Mom. committer: Tailor Script diff -r 3cf69ffdc25e -r 566177590bd5 src/gtkconv.c --- a/src/gtkconv.c Sat Dec 18 16:17:21 2004 +0000 +++ b/src/gtkconv.c Sun Dec 19 02:00:44 2004 +0000 @@ -3647,6 +3647,7 @@ gtk_menu_item_set_right_justified(GTK_MENU_ITEM(box_item), TRUE); gtk_menu_shell_append(GTK_MENU_SHELL(gtkwin->menu.menubar), box_item); gtk_widget_show(box_item); + gtk_widget_set_size_request(box_item, -1, 16); gtkwin->menu.menubox = gtk_hbox_new(FALSE, 0); gtk_container_add(GTK_CONTAINER(box_item), gtkwin->menu.menubox);