mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
Reduce mimimum height of Python Fix Edit dialog
To fit in high-dpi laptops displays without too small font
This commit is contained in:
@@ -104,7 +104,7 @@ EditFixPyScriptDialog::EditFixPyScriptDialog(Context *context, FixPyScript *fix,
|
||||
: QDialog(parent), context(context), pyFixScript(fix)
|
||||
{
|
||||
setWindowTitle(tr("Edit Python Fix"));
|
||||
setMinimumSize(QSize(1200 * dpiXFactor, 1000 * dpiYFactor));
|
||||
setMinimumSize(QSize(1200 * dpiXFactor, 650 * dpiYFactor));
|
||||
|
||||
QVBoxLayout *mainLayout = new QVBoxLayout(this);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user