http://bugs.winehq.org/show_bug.cgi?id=59569 --- Comment #1 from matthias.klaey@gmx.ch <matthias.klaey@gmx.ch> --- Workaround: ``` /// <remarks> /// Works around https://bugs.winehq.org/show_bug.cgi?id=59569. /// </remarks> [Conditional("MONO")] public static void ApplyMonoFramedLabelWorkaround(Label label) { var s = new Size((label.Width + 2), label.Height); label.AutoSize = false; label.Size = s; } /// <remarks> /// Works around https://bugs.winehq.org/show_bug.cgi?id=59569. /// </remarks> [Conditional("MONO")] public static void ApplyMonoFramedLabelWorkaround(ToolStripStatusLabel label) { var s = new Size((label.Width + 2), label.Height); label.AutoSize = false; label.Size = s; } ``` Workaround has to be applied to the initializer of all forms and controls that contain framed labels: ``` #if (MONO) SuspendLayout(); var framedLabels = new Label[] { label1, label2 }; foreach (var l in framedLabels) { ControlEx.ApplyMonoFramedLabelWorkaround(l); } ResumeLayout(); #endif ``` -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.