diff options
author | jstebbins <[email protected]> | 2009-07-17 23:38:15 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-07-17 23:38:15 +0000 |
commit | 5a1dbbd9e19859d8de91c1e99ecb6577929deed2 (patch) | |
tree | 52a229422909c1323761156d56386ab69f208ce4 | |
parent | 8094592a533ca931ee4c409d7870b158ca9a1592 (diff) |
LinGui: fix problem with wide text field causing window to resize
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2710 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | gtk/src/callbacks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c index 85ec34339..53e156d83 100644 --- a/gtk/src/callbacks.c +++ b/gtk/src/callbacks.c @@ -2078,7 +2078,7 @@ ghb_update_pending(signal_user_data_t *ud) label = GTK_LABEL(GHB_WIDGET(ud->builder, "pending_status")); pending = queue_pending_count(ud->queue); - str = g_strdup_printf("%d encode(s) pending in the queue", pending); + str = g_strdup_printf("%d encode(s) pending", pending); gtk_label_set_text(label, str); g_free(str); } |