Slight adjustment for some elements.

This commit is contained in:
Moritz Bunkus 2003-11-29 20:14:15 +00:00
parent 78d02b4fa2
commit 5f75e054bf
2 changed files with 5 additions and 3 deletions

View File

@ -40,10 +40,12 @@ using namespace libmatroska;
#define ALLFILES "All Files (*.*)|*.*"
#define PSEP '\\'
#define YOFF (-4)
#define YOFF2 0
#else
#define ALLFILES "All Files (*)|*"
#define PSEP '/'
#define YOFF (-2)
#define YOFF2 (-3)
#endif
#define ID_DIALOG 10000

View File

@ -61,20 +61,20 @@ tab_input::tab_input(wxWindow *parent):
wxDefaultSize, 0);
cb_no_chapters =
new wxCheckBox(this, ID_CB_NOCHAPTERS, _("No chapters"),
wxPoint(90, 88 + YOFF), wxDefaultSize, 0);
wxPoint(90, 90 + YOFF2), wxDefaultSize, 0);
cb_no_chapters->SetValue(false);
cb_no_chapters->SetToolTip(_("Do not copy chapters from this file. Only "
"applies to Matroska files."));
cb_no_chapters->Enable(false);
cb_no_attachments =
new wxCheckBox(this, ID_CB_NOATTACHMENTS, _("No attachments"),
wxPoint(195, 88 + YOFF), wxDefaultSize, 0);
wxPoint(195, 90 + YOFF2), wxDefaultSize, 0);
cb_no_attachments->SetValue(false);
cb_no_attachments->SetToolTip(_("Do not copy attachments from this file. "
"Only applies to Matroska files."));
cb_no_attachments->Enable(false);
cb_no_tags =
new wxCheckBox(this, ID_CB_NOTAGS, _("No tags"), wxPoint(315, 88 + YOFF),
new wxCheckBox(this, ID_CB_NOTAGS, _("No tags"), wxPoint(315, 90 + YOFF2),
wxDefaultSize, 0);
cb_no_tags->SetValue(false);
cb_no_tags->SetToolTip(_("Do not copy tags from this file. Only "