Mercurial > pidgin
comparison src/ft.c @ 10134:0aca774bef87
[gaim-migrate @ 11198]
Patch 1051145, from Nathan Fredrickson, a rewrite of the smiley selection
dialog:
This patch replaces the smiely selection dialog with a
smiley popup menu. The smileys are still arranged in a
square grid.
Screenshots here:
http://worksintheory.org/files/gaim/smiley-menu/
One outstanding issue is with the yahoo smileys. Some
of them are extra wide, and it seems that pixmap width
affects menuitem height due to gtk's calculation of the
"toggle size". The result is unecesseary vertical
spacing. Not sure whether this is a gtk bug or not.
Even with the extra vertical spacing, which only
effects yahoo smiley's, I prefer this menu to the
original dialog.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sat, 23 Oct 2004 18:07:11 +0000 |
parents | f4ff7d2b9b2c |
children | ecf3ce2e2ab1 |
comparison
equal
deleted
inserted
replaced
10133:e144efd6a5be | 10134:0aca774bef87 |
---|---|
368 } | 368 } |
369 | 369 |
370 gaim_xfer_set_local_filename(xfer, filename); | 370 gaim_xfer_set_local_filename(xfer, filename); |
371 gaim_xfer_set_filename(xfer, g_basename(filename)); | 371 gaim_xfer_set_filename(xfer, g_basename(filename)); |
372 gaim_xfer_set_size(xfer, st.st_size); | 372 gaim_xfer_set_size(xfer, st.st_size); |
373 | 373 |
374 msg = g_strdup_printf(_("Offering to send %s to %s"), | 374 msg = g_strdup_printf(_("Offering to send %s to %s"), |
375 filename, xfer->who); | 375 filename, xfer->who); |
376 gaim_xfer_conversation_write(xfer, msg, FALSE); | 376 gaim_xfer_conversation_write(xfer, msg, FALSE); |
377 g_free(msg); | 377 g_free(msg); |
378 } | 378 } |