mirror of
https://github.com/leozide/leocad
synced 2025-01-29 20:34:50 +01:00
Fixed wrong signal.
This commit is contained in:
parent
47661710db
commit
2d5d719902
1 changed files with 2 additions and 2 deletions
|
@ -84,8 +84,8 @@ lcInstructionsDialog::lcInstructionsDialog(QWidget* Parent, Project* Project)
|
|||
connect(mThumbnailsWidget, SIGNAL(currentRowChanged(int)), this, SLOT(CurrentThumbnailChanged(int)));
|
||||
mThumbnailsWidget->setCurrentRow(0);
|
||||
|
||||
connect(mVerticalPageAction, SIGNAL(checked()), this, SLOT(UpdatePageSettings()));
|
||||
connect(mHorizontalPageAction, SIGNAL(checked()), this, SLOT(UpdatePageSettings()));
|
||||
connect(mVerticalPageAction, SIGNAL(toggled()), this, SLOT(UpdatePageSettings()));
|
||||
connect(mHorizontalPageAction, SIGNAL(toggled()), this, SLOT(UpdatePageSettings()));
|
||||
connect(mRowsSpinBox, SIGNAL(valueChanged(int)), this, SLOT(UpdatePageSettings()));
|
||||
connect(mColumnsSpinBox, SIGNAL(valueChanged(int)), this, SLOT(UpdatePageSettings()));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue