File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -117,8 +117,8 @@ protected override void OnPaint(PaintEventArgs e) {
117117 }
118118
119119 protected override void OnClick ( EventArgs e ) {
120- // Only allow left click to raise click event.
121- if ( ( e as MouseEventArgs ) ? . Button . HasFlag ( MouseButtons . Left ) ?? false ) {
120+ // Only allow left clicks and simulated clicks to raise click event.
121+ if ( ( e as MouseEventArgs ) ? . Button . HasFlag ( MouseButtons . Left ) ?? true ) {
122122 base . OnClick ( e ) ;
123123 }
124124 }
Original file line number Diff line number Diff line change 3131// You can specify all the values or you can default the Build and Revision Numbers
3232// by using the '*' as shown below:
3333// [assembly: AssemblyVersion("1.0.*")]
34- [ assembly: AssemblyVersion ( "1.2.2 .0" ) ]
35- [ assembly: AssemblyFileVersion ( "1.2.2 .0" ) ]
34+ [ assembly: AssemblyVersion ( "1.2.3 .0" ) ]
35+ [ assembly: AssemblyFileVersion ( "1.2.3 .0" ) ]
You can’t perform that action at this time.
0 commit comments