Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
853f670
Added expanded registry and tester updates
Sep 1, 2021
f5c24ad
fixed pathways in solutions file
Sep 7, 2021
59a0d7c
Added enum handling, empty native handler
Sep 22, 2021
cdda143
Pull some updates from master branch
christopher-rtf Sep 22, 2021
7e577d6
Merge branch 'master' into jamesv/MissingHandlers
christopher-rtf Sep 22, 2021
44931f4
Add curly brace
christopher-rtf Sep 22, 2021
263b181
Add Azure tenant ID to script
christopher-rtf Sep 22, 2021
3c9a6f9
Add Azure tenant ID to script
christopher-rtf Sep 22, 2021
8687ff9
Fix build path, clean up whitespace
christopher-rtf Sep 22, 2021
fe1db9f
Add support for DoubleClick native handlers
christopher-rtf Sep 22, 2021
050a4b1
Add support for Volume native handler
christopher-rtf Sep 22, 2021
b8a22b4
Add support for Solid Color (desktop color) native handler
christopher-rtf Sep 22, 2021
8e06e18
added SPI stub, separated out settingsgroup class
Sep 23, 2021
88a77f5
registration fix
Sep 23, 2021
04059f0
Remove missing XML and WMI folder references
christopher-rtf Sep 23, 2021
9dacc0d
Remove missing XML and WMI folder references
christopher-rtf Sep 23, 2021
1ca3260
Add settings handler for desktop wallpaper
christopher-rtf Sep 23, 2021
9584cf1
Refactor. And add filter keys setting handler
christopher-rtf Sep 24, 2021
7c6c0b2
Add SPI-based high contrast setting handler
christopher-rtf Sep 24, 2021
5f41d82
Add StickyKeys and MouseTrails settings handlers
christopher-rtf Sep 24, 2021
b6a0a86
Add ToggleKeys setting handler
christopher-rtf Sep 24, 2021
e27878d
Add notification message duration setting handler
christopher-rtf Sep 24, 2021
505d185
Add MouseKeys setting handler
christopher-rtf Sep 24, 2021
bfb9b63
Add AudioDescription and UnderlineMenuShortcuts settings handlers
christopher-rtf Sep 24, 2021
6b3f18b
Add mouse button swap setting handler
christopher-rtf Sep 25, 2021
20110bf
Add scroll wheel lines setting handler
christopher-rtf Sep 25, 2021
517ec3f
Add mouse wheel routing setting handler
christopher-rtf Sep 25, 2021
fd6017c
Add wheel scroll chars setting handler
christopher-rtf Sep 25, 2021
4b5df84
Refactor. And add active window tracking settings handler
christopher-rtf Sep 25, 2021
d16b8bb
Add active window tracking zorder setting handler
christopher-rtf Sep 25, 2021
61c175c
Refactor. And add windows arranging setting handler
christopher-rtf Sep 25, 2021
9bfaaa4
Refactor. And add mosue pointer speed setting handler
christopher-rtf Sep 25, 2021
62a2520
Add 'enhance pointer precision' setting handler
christopher-rtf Sep 25, 2021
310874b
Add 'snap to default button' setting handler
christopher-rtf Sep 25, 2021
715d8d1
Add 'hide pointer while typing' setting handler
christopher-rtf Sep 25, 2021
44e279d
Add mouse sonar setting handler
christopher-rtf Sep 25, 2021
d03223b
Merge all solutions into solutions registry json5 file
christopher-rtf Sep 27, 2021
925150c
added XML and WMI and relevant solutions
Sep 30, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Morphic.Client/Bar/Data/Actions/SettingAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ public async Task<bool> CanExecute(string id)
var range = Setting.Range;
var idRequiresCountRefresh = Setting.Id == "zoom";

var min = await range.GetMin(0, idRequiresCountRefresh);
var max = await range.GetMax(0, idRequiresCountRefresh) - 1;
var min = await range.GetMinInt(0, idRequiresCountRefresh);
var max = await range.GetMaxInt(0, idRequiresCountRefresh) - 1;

var currentValue = (int)(Setting.CurrentValue ?? 0);

Expand Down
4 changes: 2 additions & 2 deletions Morphic.Client/Bar/UI/QuickHelpWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ private async void UpdatePager(PagerControl pager, Setting setting, SettingRange

if ((idRequiresCountRefresh == true) || (pager.CurrentPage == -1))
{
var min = range.GetMin(0, idRequiresCountRefresh);
var max = range.GetMax(0, idRequiresCountRefresh);
var min = range.GetMinInt(0, idRequiresCountRefresh);
var max = range.GetMaxInt(0, idRequiresCountRefresh);
pager.Offset = await min;
pager.NumberOfPages = await max;
}
Expand Down
Loading