On a device with low resolution (1280 x 800) and/or low dpi, the buttons for saving and loading configurations are hidden.
I tracked down the problem to these lines of code:
(Original 5.5.0.0)
//
// FormConfig
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
this.ClientSize = new System.Drawing.Size(990, 715);
where in Plough-Test it got adapted to:
//
// FormConfig
//
this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.Cyan;
this.ClientSize = new System.Drawing.Size(1231, 890);
On a device with low resolution (1280 x 800) and/or low dpi, the buttons for saving and loading configurations are hidden.
I tracked down the problem to these lines of code:
(Original 5.5.0.0)
where in Plough-Test it got adapted to: