summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-05 18:11:39 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-05 18:11:39 +0000
commit18a826057f1bb49d3d14cd60dd837e1a647178bf (patch)
tree28a9a2637ae57a5e65f5884397f490df17d7b03f /src
parentedafebffa42b9bc57408cc9540a7c15e4e4cab63 (diff)
Stop using wxID_UP/DOWN as it appears the texts are not translated.
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_editor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc
index cd159189c..677614fb1 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -275,9 +275,9 @@ FilmEditor::make_content_panel ()
b->Add (_content_add_folder, 1, wxEXPAND | wxLEFT | wxRIGHT);
_content_remove = new wxButton (_content_panel, wxID_ANY, _("Remove"));
b->Add (_content_remove, 1, wxEXPAND | wxLEFT | wxRIGHT);
- _content_earlier = new wxButton (_content_panel, wxID_UP);
+ _content_earlier = new wxButton (_content_panel, wxID_ANY, _("Up"));
b->Add (_content_earlier, 1, wxEXPAND);
- _content_later = new wxButton (_content_panel, wxID_DOWN);
+ _content_later = new wxButton (_content_panel, wxID_ANY, _("Down"));
b->Add (_content_later, 1, wxEXPAND);
_content_timeline = new wxButton (_content_panel, wxID_ANY, _("Timeline..."));
b->Add (_content_timeline, 1, wxEXPAND | wxLEFT | wxRIGHT);