From 60c47829edbee73ef6973643fa11643979281791 Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Sat, 22 Mar 2014 03:21:28 +0000 Subject: [PATCH] Bug 707 - Metadata Editor: Width and height values in .cfg not respected. Steve's patch. --- src/Tags.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Tags.cpp b/src/Tags.cpp index 747f98ad1..31f54d0f6 100644 --- a/src/Tags.cpp +++ b/src/Tags.cpp @@ -715,7 +715,8 @@ TagsEditor::TagsEditor(wxWindow * parent, if (IsWindowRectValid(&r)) Move(r.GetPosition()); -// SetSize(r.GetSize()); + SetSize(r.GetSize()); + Layout(); // Resize value column width based on width of columns and the vertical scrollbar wxScrollBar sb(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSB_VERTICAL);