mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
* Implement the delayed rendering * Impelement settings UI * Rename * Set the minimum of ShortcutGuide_PressTimeForTaskbarIconShortcuts to 100ms * Separate the animations of the global windows shortcuts and the taskbar icon shortcuts * Amend * Handle the case when the shortcut guide is not activated by win key long press * Remove .vscode * Keep the user's original setting of the win key press time * Revert the default press time to 900 ms * Restore default as 900
14 lines
373 B
C++
14 lines
373 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
struct ShortcutGuideSettings
|
|
{
|
|
std::wstring hotkey = L"shift+win+/";
|
|
int overlayOpacity = 90;
|
|
std::wstring theme = L"system";
|
|
std::wstring disabledApps = L"";
|
|
bool shouldReactToPressedWinKey = false;
|
|
int windowsKeyPressTimeForGlobalWindowsShortcuts = 900;
|
|
int windowsKeyPressTimeForTaskbarIconShortcuts = 900;
|
|
};
|