]> granicus.if.org Git - handbrake/commitdiff
LinGui: fix problem with wide text field causing window to resize
authorjstebbins <jstebbins.hb@gmail.com>
Fri, 17 Jul 2009 23:38:15 +0000 (23:38 +0000)
committerjstebbins <jstebbins.hb@gmail.com>
Fri, 17 Jul 2009 23:38:15 +0000 (23:38 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2710 b64f7644-9d1e-0410-96f1-a4d463321fa5

gtk/src/callbacks.c

index 85ec34339c8270ce23203b78bbe955857f7fe298..53e156d8329379d964103e60ee46f11f612a6e08 100644 (file)
@@ -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);
 }