summaryrefslogtreecommitdiffstats
path: root/gtk/src/callbacks.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2017-12-22 14:19:03 -0800
committerJohn Stebbins <[email protected]>2017-12-22 14:19:03 -0800
commit19d4faaa83f8e29373947fb700bcd711fa14f903 (patch)
tree262ba2ef0114d154f025965c1b9efaba66c0dc27 /gtk/src/callbacks.c
parent96dfcf66c13723485b0df00f0d17035a2c3b9c68 (diff)
LinGui: rename "Dimensions:" to "Size:" and move...
Move under Filters
Diffstat (limited to 'gtk/src/callbacks.c')
-rw-r--r--gtk/src/callbacks.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c
index eac27e8b9..1ab846b63 100644
--- a/gtk/src/callbacks.c
+++ b/gtk/src/callbacks.c
@@ -2140,18 +2140,15 @@ ghb_update_summary_info(signal_user_data_t *ud)
par_width = ghb_dict_get_int(ud->settings, "PicturePARWidth");
par_height = ghb_dict_get_int(ud->settings, "PicturePARHeight");
- text = g_strdup_printf("%dx%d storage, %dx%d display",
- width, height, display_width, display_height);
- widget = GHB_WIDGET(ud->builder, "dimensions_summary");
- gtk_label_set_text(GTK_LABEL(widget), text);
- g_free(text);
-
display_aspect = ghb_get_display_aspect_string(display_width,
display_height);
- text = g_strdup_printf("%d:%d PAR, %s DAR",
+ text = g_strdup_printf("%dx%d storage, %dx%d display\n"
+ "%d:%d PAR, %s DAR",
+ width, height, display_width, display_height,
par_width, par_height, display_aspect);
- widget = GHB_WIDGET(ud->builder, "aspect_summary");
+ widget = GHB_WIDGET(ud->builder, "dimensions_summary");
gtk_label_set_text(GTK_LABEL(widget), text);
+
g_free(text);
g_free(display_aspect);
}