fix: update keyboard shortcut and correct CSS variable typo#35
Merged
craftzdog merged 4 commits intoinkdropapp:mainfrom Jul 21, 2025
Merged
fix: update keyboard shortcut and correct CSS variable typo#35craftzdog merged 4 commits intoinkdropapp:mainfrom
craftzdog merged 4 commits intoinkdropapp:mainfrom
Conversation
This commit updates two small but important aspects of the codebase: 1. **Keyboard Shortcut Update** The shortcut for triggering the application reload has been updated to use `Alt+Cmd+Shift+R` (on macOS) and `Alt+Shift+R` (on Windows/Linux), instead of the previous `Alt+Cmd+Ctrl+R` / `Alt+Ctrl+R`. This change aligns with other system conventions and avoids conflicts with existing shortcuts. Old: `Alt+Cmd+Ctrl+R` / `Alt+Ctrl+R` New: `Alt+Cmd+Shift+R` / `Alt+Shift+R` 2. **CSS Variable Typo Fix** The CSS `label` color was previously defined with an incorrect number of dashes in the custom property name: `hsl(var(----hsl-gray-800 / 30%)` has been corrected to: `hsl(var(--hsl-gray-800 / 30%))`
|
@crafts69guy is attempting to deploy a commit to the inkdrop Team on Vercel. A member of the Team first needs to authorize it. |
Collaborator
|
Why do you think the keybinds for app reload have changed? They haven't. |
Contributor
Author
Contributor
|
ahhh yes, the shortcut key for mac is wrong. It is Alt+Cmd+Shift+R but on other platforms, it's ctrl-alt-r |
Contributor
Author
|
ahh, I’m using macOS, so I assume the shortcut is different on Windows. I’m sorry—that was my mistake. However, I’ve noticed that several pages are showing the wrong shortcuts as well. |
Contributor
|
i appreciate it, @crafts69guy ! |
craftzdog
approved these changes
Jul 21, 2025
Contributor
|
Thank you! |
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.

This commit updates two small but important aspects of the codebase:
Keyboard Shortcut Update The shortcut for triggering the application reload has been updated to use
Alt+Cmd+Shift+R(on macOS) andAlt+Shift+R(on Windows/Linux), instead of the previousAlt+Cmd+Ctrl+R/Alt+Ctrl+R. This change aligns with other system conventions and avoids conflicts with existing shortcuts.Old:
Alt+Cmd+Ctrl+R/Alt+Ctrl+RNew:
Alt+Cmd+Shift+R/Alt+Shift+RCSS Variable Typo Fix The CSS
labelcolor was previously defined with an incorrect number of dashes in the custom property name:hsl(var(----hsl-gray-800 / 30%)has been corrected to:hsl(var(--hsl-gray-800 / 30%))