File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1- 1.55
1+ 1.56
2+ - Add Arabic question mark to NormalizePunctuation method.
3+ - Fix #424 : Broken resource files may crash application on launch
4+ - Improve DGX filtering experience. Ctrl+F jumps to filter, arrow down jumps back to grid. Fixes #420
5+
6+ 1.55
27- Fix #418 : Solution-level RESX files throw FileNotFoundException
38- Fix #290 : Can't make T4 template work with .NET Core project
49
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<Project >
33 <PropertyGroup >
4- <Version >1.55 .0.0</Version >
4+ <Version >1.56 .0.0</Version >
55 <Company >tom-englert.de</Company >
66 <Product >ResXManager</Product >
77 <Copyright >Copyright (c) .NET Foundation and Contributors.</Copyright >
Original file line number Diff line number Diff line change @@ -445,7 +445,7 @@ private static bool TryGetKeyForPrivateProcessing(ref System.Windows.Forms.Messa
445445 return true ;
446446 }
447447
448- if ( ( m . WParam == ( IntPtr ) 0x46 || m . WParam == ( IntPtr ) 0x66 ) && ( Keyboard . Modifiers & ModifierKeys . Control ) != 0 )
448+ if ( ( m . WParam == ( IntPtr ) 0x46 || m . WParam == ( IntPtr ) 0x66 ) && ( Keyboard . Modifiers == ModifierKeys . Control ) )
449449 {
450450 // process Ctrl+F locally, we do our own search
451451 key = Key . F ;
You can’t perform that action at this time.
0 commit comments