Use unicode U+00D7 for multiplication

This commit is contained in:
Rafał Dzięgiel
2022-01-17 20:27:53 +01:00
parent 38efa7ab9f
commit 8ba3ca4af6
2 changed files with 3 additions and 3 deletions

View File

@@ -224,7 +224,7 @@ class ClapperWidget extends Gtk.Grid
case GstClapper.ClapperVideoInfo:
type = 'video';
codec = info.get_codec() || _('Undetermined');
text = `${codec}, ${info.get_width()}x${info.get_height()}`;
text = `${codec}, ${info.get_width()}×${info.get_height()}`;
let fps = info.get_framerate();
fps = Number((fps[0] / fps[1]).toFixed(2));
if(fps)