FRToolStripTextBox.cs 336 B

1234567891011121314
  1. using System.Drawing;
  2. using System.Windows.Forms;
  3. namespace FastReport.Controls
  4. {
  5. internal class FRToolStripTextBox : ToolStripTextBox
  6. {
  7. public override Size GetPreferredSize(Size constrainingSize)
  8. {
  9. // bug in Linux: control is obscured by the next sibling
  10. return Size;
  11. }
  12. }
  13. }