mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-05 13:03:55 -07:00
default to false, actually
Took 2 minutes
This commit is contained in:
parent
1639f2e310
commit
1216d25601
2 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ DeckAnalyticsWidget::DeckAnalyticsWidget(QWidget *parent, DeckListStatisticsAnal
|
||||||
saveButton = new QPushButton(this);
|
saveButton = new QPushButton(this);
|
||||||
loadButton = new QPushButton(this);
|
loadButton = new QPushButton(this);
|
||||||
includeSideboardCheckBox = new QCheckBox(this);
|
includeSideboardCheckBox = new QCheckBox(this);
|
||||||
includeSideboardCheckBox->setChecked(true);
|
includeSideboardCheckBox->setChecked(false);
|
||||||
|
|
||||||
controlLayout->addWidget(addButton);
|
controlLayout->addWidget(addButton);
|
||||||
controlLayout->addWidget(removeButton);
|
controlLayout->addWidget(removeButton);
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ struct DeckListStatisticsAnalyzerConfig
|
||||||
bool computeCategories = true;
|
bool computeCategories = true;
|
||||||
bool computeCurveBreakdowns = true;
|
bool computeCurveBreakdowns = true;
|
||||||
bool computeProbabilities = true;
|
bool computeProbabilities = true;
|
||||||
bool includeSideboard = true;
|
bool includeSideboard = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
class DeckListStatisticsAnalyzer : public QObject
|
class DeckListStatisticsAnalyzer : public QObject
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue