Problem: GTK4: minimum horizontal size is too small
Solution: Update minimum width of form widget to 20 columns for gtk4 gui
(Foxe Chen).
closes: #20542
Signed-off-by: Foxe Chen <chen.foxe@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
}
else
{
- // Set minimum width of form widget to 10 columns.
+ // Set minimum width of form widget to 20 columns. Any less and the draw
+ // area seems to glitch out...
if (minimum != NULL)
- *minimum = gui.char_width * 10;
+ *minimum = gui.char_width * 20;
if (natural != NULL)
- *natural = gui.char_width * 10;
+ *natural = gui.char_width * 20;
}
if (minimum_baseline != NULL)
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 668,
/**/
667,
/**/