We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71f3ddd commit b022022Copy full SHA for b022022
src/Flux/flxSettingsSerial.cpp
@@ -983,6 +983,7 @@ bool flxSettingsSerial::loop(void)
983
{
984
_bIsDirty=false;
985
986
+ on_editing.emit(1);
987
drawEntryBanner();
988
989
bool doSave = drawPage(_systemRoot);
@@ -1000,7 +1001,8 @@ bool flxSettingsSerial::loop(void)
1000
1001
flxLog_I(F("Saving System Settings."));
1002
on_finished.emit();
1003
}
-
1004
+ on_editing.emit(0);
1005
+
1006
return true;
1007
1008
src/Flux/flxSettingsSerial.h
@@ -63,6 +63,7 @@ class flxSettingsSerial : public flxActionType<flxSettingsSerial>
63
64
// Our output event
65
flxSignalVoid on_finished;
66
+ flxSignalBool on_editing;
67
68
bool loop();
69
0 commit comments