From 1eb4a86b9cf2f9749e162f1ac12b2e584c88aa97 Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Tue, 1 Nov 2016 15:45:51 -0700 Subject: [PATCH] LinGui: fix formatting of video encoder preset GTK doesn't make the space for the label big enough. With some tweaking I managed to work around it's poor formatting. --- gtk/src/videohandler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/src/videohandler.c b/gtk/src/videohandler.c index 0ef8ec1bb..b57e137dd 100644 --- a/gtk/src/videohandler.c +++ b/gtk/src/videohandler.c @@ -297,7 +297,7 @@ format_video_preset_cb(GtkScale *scale, gdouble val, signal_user_data_t *ud) if (video_presets != NULL) { preset = video_presets[(int)val]; - return g_strdup_printf(" %-12s", preset); + return g_strdup_printf("%-10s", preset); } return g_strdup_printf(" %-12s", "ERROR"); } -- 2.40.0