Added tray icon with right-click options, and fixed bug "Jiggling mouse every 0 s"#94
Closed
gaylong9 wants to merge 1 commit intoarkane-systems:masterfrom
Closed
Added tray icon with right-click options, and fixed bug "Jiggling mouse every 0 s"#94gaylong9 wants to merge 1 commit intoarkane-systems:masterfrom
gaylong9 wants to merge 1 commit intoarkane-systems:masterfrom
Conversation
…iting app, and toggling jiggle state. fix: Uninitialized JigglePeriod results in "Jiggling mouse every 0 s" message when no period is set.
midwan
added a commit
to midwan/mousejiggler
that referenced
this pull request
Jan 9, 2025
Basically copied PR from arkane-systems#94 with a few minor fixes
Collaborator
|
Added as part of #96 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Feat: This PR adds a system tray icon with right-click options to the application. The options include:
Open the main window.
Exit the application.
Toggle the jiggle state on/off.
These features improve user control over the application without needing to keep the main window open.
Fix: Uninitialized JigglePeriod results in "Jiggling mouse every 0 s" message
Issue occurred when Jiggling was enabled and the app minimized to tray without setting the period.
The JigglePeriod variable was not properly initialized in the constructor. Modifying the value of tbPeriod in the constructor does not call the function tbPeriod_ValueChanged.
Fixed by assigning JigglePeriod in the MainForm constructor.