Replies: 2 comments 2 replies
-
Flow.Launcher/Flow.Launcher.Core/Plugin/JsonPRCModel.cs Lines 56 to 62 in 943425b Sorry the above is wrong, as you would need to pre-register the settings change before executing it. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Writing a plugin that's shows a periodical reminder. I do this by using Javascript's built in
setInterval
This works, but I also need to save the return value of the above function call, so it can be cancelled.
So I tried saving the value to plugin settings file.
However I am only able to write to the settings file when the results are generated. But the setting needs to be updated after the user chooses the right option and presses enter.
Below works. But I don't want the setting to update when the user types.
Each row has an action
Any ideas on how to make this work ? Also I notice sometimes pressing enter has no effect on the window. The code works, but the windows stays..
Beta Was this translation helpful? Give feedback.
All reactions