]> granicus.if.org Git - handbrake/commitdiff
LinGui: don't abbreviate PAR and DAR in summary
authorJohn Stebbins <jstebbins.hb@gmail.com>
Fri, 22 Dec 2017 23:53:39 +0000 (15:53 -0800)
committerJohn Stebbins <jstebbins.hb@gmail.com>
Fri, 22 Dec 2017 23:53:39 +0000 (15:53 -0800)
gtk/src/callbacks.c

index 614a9aef5afb0d973d729a9f3490e9afdf9b68c4..8bd7443de252c0cc9c8edde66f6e15748f07432a 100644 (file)
@@ -2141,7 +2141,8 @@ ghb_update_summary_info(signal_user_data_t *ud)
     display_aspect = ghb_get_display_aspect_string(display_width,
                                                    display_height);
     text = g_strdup_printf("%dx%d storage, %dx%d display\n"
-                           "%d:%d PAR, %s DAR",
+                           "%d:%d Pixel Aspect Ratio\n"
+                            "%s Display Aspect Ratio",
                            width, height, display_width, display_height,
                            par_width, par_height, display_aspect);
     widget = GHB_WIDGET(ud->builder, "dimensions_summary");