mirror of
https://github.com/YACReader/yacreader
synced 2025-11-15 06:22:49 -05:00
corregido el di?logo de propiedades en macosx
This commit is contained in:
@ -136,6 +136,7 @@ void PropertiesDialog::createGeneralInfoBox()
|
|||||||
|
|
||||||
QFormLayout *generalInfoLayout = new QFormLayout;
|
QFormLayout *generalInfoLayout = new QFormLayout;
|
||||||
|
|
||||||
|
generalInfoLayout->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
|
||||||
//generalInfoLayout->setRowWrapPolicy(QFormLayout::WrapAllRows);
|
//generalInfoLayout->setRowWrapPolicy(QFormLayout::WrapAllRows);
|
||||||
generalInfoLayout->addRow(tr("Title:"), title = new YACReaderFieldEdit());
|
generalInfoLayout->addRow(tr("Title:"), title = new YACReaderFieldEdit());
|
||||||
|
|
||||||
@ -234,6 +235,8 @@ void PropertiesDialog::createPublishingBox()
|
|||||||
|
|
||||||
QFormLayout *publishingLayout = new QFormLayout;
|
QFormLayout *publishingLayout = new QFormLayout;
|
||||||
|
|
||||||
|
publishingLayout->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
|
||||||
|
|
||||||
QHBoxLayout * date = new QHBoxLayout;
|
QHBoxLayout * date = new QHBoxLayout;
|
||||||
date->addWidget(new QLabel(tr("Day:")));
|
date->addWidget(new QLabel(tr("Day:")));
|
||||||
date->addWidget(dayEdit = new YACReaderFieldEdit());
|
date->addWidget(dayEdit = new YACReaderFieldEdit());
|
||||||
@ -264,6 +267,7 @@ void PropertiesDialog::createPlotBox()
|
|||||||
plotBox = new QWidget;
|
plotBox = new QWidget;
|
||||||
|
|
||||||
QFormLayout *plotLayout = new QFormLayout;
|
QFormLayout *plotLayout = new QFormLayout;
|
||||||
|
plotLayout->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
|
||||||
|
|
||||||
plotLayout->setRowWrapPolicy(QFormLayout::WrapAllRows);
|
plotLayout->setRowWrapPolicy(QFormLayout::WrapAllRows);
|
||||||
plotLayout->addRow(tr("Synopsis:"), synopsis = new YACReaderFieldPlainTextEdit());
|
plotLayout->addRow(tr("Synopsis:"), synopsis = new YACReaderFieldPlainTextEdit());
|
||||||
|
|||||||
Reference in New Issue
Block a user