diff --git a/src/mmg/mmg.h b/src/mmg/mmg.h index ef84173a9..0e96831c3 100644 --- a/src/mmg/mmg.h +++ b/src/mmg/mmg.h @@ -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 diff --git a/src/mmg/tab_input.cpp b/src/mmg/tab_input.cpp index 315176842..c2c970792 100644 --- a/src/mmg/tab_input.cpp +++ b/src/mmg/tab_input.cpp @@ -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 "