π toggle switcher for settings#476
Open
xhugoliu wants to merge 1 commit into
Open
Conversation
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.
Summary
This PR fixes #436 by keeping Keyviz hidden from the macOS Dock and app switcher during normal tray-only use, while still showing it as a regular app when the settings window is opened.
Root cause
Keyviz was previously running with the default macOS activation policy, so the app could still appear in the Dock and
Cmd+Tabapp switcher even when it was effectively being used as a tray-first utility.The settings window also followed a close flow that did not switch the app back to a tray-only state after it was dismissed.
Changes
Info.plistwithLSUIElementso the app starts in a menu bar style modeCmd+Wand the titlebar close button hide the window and return the app to tray-only modeTesting
cargo checknpm run buildnpm run tauri buildCmd+Wor the close button removes Keyviz from the app switcher againResult
Settings open: Keyviz appears in the macOS app switcher while the settings window is visible.
Settings closed: Keyviz returns to tray-only mode and no longer appears in the macOS app switcher after the settings window is dismissed.