mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
[MouseJump]Refactor code to allow later introduction of customizable appearance (#32838)
* [Mouse Jump] - move code shared with FancyMouse into "Common" folder (#25482) * [Mouse Jump] - updates to NativeMethods (#25482) * [Mouse Jump] - added new drawing / layout / style classes (#25482) * [Mouse Jump] - new style-based preview rendering (actual preview visual style unchanged) (#25482) * [Mouse Jump] - add words to spell checker (#25482) * [Mouse Jump] - small tweak to error handling (#25482) * [Mouse Jump] - fixed failing test (#25482)
This commit is contained in:
@@ -49,7 +49,6 @@ partial class MainForm
|
||||
panel1.Dock = DockStyle.Fill;
|
||||
panel1.Location = new System.Drawing.Point(0, 0);
|
||||
panel1.Name = "panel1";
|
||||
panel1.Padding = new Padding(5);
|
||||
panel1.Size = new System.Drawing.Size(800, 450);
|
||||
panel1.TabIndex = 1;
|
||||
//
|
||||
@@ -59,7 +58,7 @@ partial class MainForm
|
||||
Thumbnail.Dock = DockStyle.Fill;
|
||||
Thumbnail.Location = new System.Drawing.Point(5, 5);
|
||||
Thumbnail.Name = "Thumbnail";
|
||||
Thumbnail.Size = new System.Drawing.Size(790, 440);
|
||||
Thumbnail.Size = new System.Drawing.Size(800, 450);
|
||||
Thumbnail.SizeMode = PictureBoxSizeMode.Normal;
|
||||
Thumbnail.TabIndex = 1;
|
||||
Thumbnail.TabStop = false;
|
||||
|
||||
Reference in New Issue
Block a user