Skip to content

Commit

Permalink
Minor fix: print new value when changing config
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtuchkin committed May 27, 2017
1 parent 631de22 commit 64a8528
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ void PersistentSettings::set_value(Vector<T, arr_len> &arr, uint32_t idx, Hashed

if (validate_setup(stream)) {
// Success.
def.print_def(idx, stream);
stream.printf("Updated: ");
arr[idx].print_def(idx, stream);
} else {
// Validation failed. Undo.
if (push_new)
Expand Down

0 comments on commit 64a8528

Please sign in to comment.