-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Add Mica Alt support to Microsoft Terminal (#17650) #19246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Add Mica Alt support to Microsoft Terminal (#17650) #19246
Conversation
Co-authored-by: deepanshu-maliyan <115917329+deepanshu-maliyan@users.noreply.github.com>
@microsoft-github-policy-service agree |
#include <TerminalThemeHelpers.h> | ||
#include <CoreWindow.h> | ||
|
||
// Define DWMSBT_TRANSIENTWINDOW if not available (for Mica Alt) |
Check failure
Code scanning / check-spelling
Unrecognized Spelling Error
#include <CoreWindow.h> | ||
|
||
// Define DWMSBT_TRANSIENTWINDOW if not available (for Mica Alt) | ||
#ifndef DWMSBT_TRANSIENTWINDOW |
Check failure
Code scanning / check-spelling
Unrecognized Spelling Error
|
||
// Define DWMSBT_TRANSIENTWINDOW if not available (for Mica Alt) | ||
#ifndef DWMSBT_TRANSIENTWINDOW | ||
#define DWMSBT_TRANSIENTWINDOW 3 |
Check failure
Code scanning / check-spelling
Unrecognized Spelling Error
attribute = DWMSBT_MAINWINDOW; | ||
break; | ||
case winrt::Microsoft::Terminal::Settings::Model::MicaKind::MicaAlt: | ||
// DWMSBT_TRANSIENTWINDOW is the constant for Mica Alt |
Check failure
Code scanning / check-spelling
Unrecognized Spelling Error
break; | ||
case winrt::Microsoft::Terminal::Settings::Model::MicaKind::MicaAlt: | ||
// DWMSBT_TRANSIENTWINDOW is the constant for Mica Alt | ||
attribute = DWMSBT_TRANSIENTWINDOW; |
Check failure
Code scanning / check-spelling
Unrecognized Spelling Error
@check-spelling-bot Report🔴 Please reviewSee the 📂 files view, the 📜action log, or 📝 job summary for details.Unrecognized words (1)TRANSIENTWINDOW These words are not needed and should be removedfoob fuzzyfinder lstrcmpi oobTo accept these unrecognized words as correct and remove the previously acknowledged and now absent words, you could run the following commands... in a clone of the git@github.com:deepanshu-maliyan/terminal.git repository curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/v0.0.25/apply.pl' |
perl - 'https://github.com/microsoft/terminal/actions/runs/16994073668/attempts/1' &&
git commit -m 'Update check-spelling metadata' ✏️ Contributor please read thisBy default the command suggestion will generate a file named based on your commit. That's generally ok as long as you add the file to your commit. Someone can reorganize it later. If the listed items are:
See the 🔬 You can test your commits without appending to a PR by creating a new branch with that extra change and pushing it to your fork. The check-spelling action will run in response to your push -- it doesn't require an open pull request. By using such a branch, you can limit the number of typos your peers see you make. 😉 If the flagged items are 🤯 false positivesIf items relate to a ...
|
This pull request adds support for the Mica Alt theme in Windows Terminal as requested in #17650.
useMica
setting now accepts both boolean (true
/false
) and string enums ("mica"
,"micaAlt"
,"none"
), following the pattern ofbellStyle
.Fixes #17650
Thank you for your time and review.