mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 12:27:21 +00:00
Adjusted the size of the "Parsing Matroska file..." window on Windows.
This commit is contained in:
parent
118f1573cf
commit
fa59cc4b98
@ -45,7 +45,7 @@ using namespace libebml;
|
||||
kax_analyzer_c::kax_analyzer_c(wxWindow *nparent, string nname):
|
||||
wxDialog(nparent, -1, "Analysis running", wxDefaultPosition,
|
||||
#ifdef SYS_WINDOWS
|
||||
wxSize(300, 100),
|
||||
wxSize(300, 130),
|
||||
#else
|
||||
wxSize(300, 100),
|
||||
#endif
|
||||
@ -63,7 +63,11 @@ kax_analyzer_c::kax_analyzer_c(wxWindow *nparent, string nname):
|
||||
wxButton *b_abort =
|
||||
new wxButton(this, ID_B_ANALYZER_ABORT, _("Abort"), wxPoint(0, 0),
|
||||
wxDefaultSize);
|
||||
#if defined(SYS_WINDOWS)
|
||||
b_abort->Move(wxPoint(150 - b_abort->GetSize().GetWidth() / 2, 70));
|
||||
#else
|
||||
b_abort->Move(wxPoint(150 - b_abort->GetSize().GetWidth() / 2, 60));
|
||||
#endif
|
||||
}
|
||||
|
||||
kax_analyzer_c::~kax_analyzer_c() {
|
||||
|
Loading…
Reference in New Issue
Block a user