summaryrefslogtreecommitdiff
path: root/src/wx/imagemagick_content_dialog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/imagemagick_content_dialog.cc')
-rw-r--r--src/wx/imagemagick_content_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/imagemagick_content_dialog.cc b/src/wx/imagemagick_content_dialog.cc
index dfe4df2e7..6aa756260 100644
--- a/src/wx/imagemagick_content_dialog.cc
+++ b/src/wx/imagemagick_content_dialog.cc
@@ -33,12 +33,12 @@ ImageMagickContentDialog::ImageMagickContentDialog (wxWindow* parent, shared_ptr
grid->AddGrowableCol (1, 1);
{
- add_label_to_sizer (grid, this, (_("Duration")));
+ add_label_to_sizer (grid, this, _("Duration"), true);
wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
_video_length = new wxSpinCtrl (this);
s->Add (_video_length);
/// TRANSLATORS: this is an abbreviation for seconds, the unit of time
- add_label_to_sizer (s, this, _("s"));
+ add_label_to_sizer (s, this, _("s"), false);
grid->Add (s);
}