# HG changeset patch # User nenolod # Date 1160013609 25200 # Node ID 15c92d5aebcdf42e2afc3d35f12447da3ea65050 # Parent d3293e214422c4f7b4429c85674653942919e47f [svn] - really preserve the old message on othertext info diff -r d3293e214422 -r 15c92d5aebcd ChangeLog --- a/ChangeLog Wed Oct 04 18:52:37 2006 -0700 +++ b/ChangeLog Wed Oct 04 19:00:09 2006 -0700 @@ -1,3 +1,11 @@ +2006-10-05 01:52:37 +0000 William Pitcock + revision [2537] + - another oops in my oops fix, sorry + + trunk/audacious/mainwin.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2006-10-05 01:51:58 +0000 William Pitcock revision [2535] - i made an oops diff -r d3293e214422 -r 15c92d5aebcd audacious/mainwin.c --- a/audacious/mainwin.c Wed Oct 04 18:52:37 2006 -0700 +++ b/audacious/mainwin.c Wed Oct 04 19:00:09 2006 -0700 @@ -783,9 +783,11 @@ void mainwin_lock_info_text(const gchar * text) { + if (mainwin_info_text_locked != TRUE) + mainwin_tb_old_text = g_strdup(bmp_active_skin->properties.mainwin_othertext_is_status ? + mainwin_othertext->tb_text : mainwin_info->tb_text); + mainwin_info_text_locked = TRUE; - mainwin_tb_old_text = g_strdup(bmp_active_skin->properties.mainwin_othertext_is_status ? - mainwin_othertext->tb_text : mainwin_info->tb_text); textbox_set_text(bmp_active_skin->properties.mainwin_othertext_is_status ? mainwin_othertext : mainwin_info, text); }