Comments line clears when an ingredient is added.

This commit is contained in:
Andrew Lalis 2018-03-30 11:33:08 +02:00
parent 50ff37599c
commit 6114bdbfa7
1 changed files with 2 additions and 0 deletions

View File

@ -75,6 +75,7 @@ void NewRecipeDialog::on_addIngredientButton_clicked(){
UnitOfMeasure u = this->units[ui->unitComboBox->currentIndex()]; UnitOfMeasure u = this->units[ui->unitComboBox->currentIndex()];
RecipeIngredient ri(i, ui->quantitySpinBox->value(), u, ui->commentsLineEdit->text().toStdString()); RecipeIngredient ri(i, ui->quantitySpinBox->value(), u, ui->commentsLineEdit->text().toStdString());
this->ingredientListModel.addIngredient(ri); this->ingredientListModel.addIngredient(ri);
ui->commentsLineEdit->clear();
} }
void NewRecipeDialog::on_italicsButton_clicked(){ void NewRecipeDialog::on_italicsButton_clicked(){
@ -150,6 +151,7 @@ void NewRecipeDialog::on_newIngredientButton_clicked(){
Ingredient i = d.getIngredient(); Ingredient i = d.getIngredient();
this->recipeDB->storeIngredient(i); this->recipeDB->storeIngredient(i);
this->populateIngredientsBox(); this->populateIngredientsBox();
ui->ingredientNameBox->setCurrentText(QString::fromStdString(i.getName()));
} }
} }