mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-19 22:37:58 +08:00
41997eb599
* Fix ColorPicker sampling colour from the grid Addresses #13831. The sampled pixel is now completely avoided by the grid. Also, this should address the timing issue from the sampling being done every 10ms, which overlaps strangely with monitor refresh rates at 16.6ms, 13.3ms, etc. * Forgot extra library * Revert rounding in GetPixelColor * Ensure EnumDisplaySettingsW returns true Assigning refreshRate only if EnumDisplaySettingsW returns true, otherwise defaulting to 60.0Hz. * Run spellchecker * Spellcheck again --------- Co-authored-by: Stefan Markovic <stefan@janeasystems.com> |
||
---|---|---|
.. | ||
ActionRunner | ||
codeAnalysis | ||
common | ||
gpo/assets | ||
logging | ||
modules | ||
runner | ||
settings-ui | ||
tests/win-app-driver | ||
Update | ||
.clang-format | ||
.editorconfig | ||
README.md | ||
Version.props |
PowerToys Source Code
Code organization
The PowerToys are split into DLLs for each PowerToy module (modules
folder), and an executable (runner
folder) that loads and manages those DLLs.
The settings window is a separate executable, contained in settings-ui
folder. It utilizes a WebView to display an HTML-based settings window.
The common
contains code for a static library with helper functions, used by both the runner and the PowerToys modules.