Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion QuickLook.Plugin.CADImport/CADImaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private void OnCADPictBoxScroll(object sender, ScrollEventArgsExt e)

private void OnCADPictBoxMouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
if (e.Button == MouseButtons.Left)
{
CursorUpdated?.Invoke(this, new CADImagingEventArgs(CADImagingEventArgs.EventType.Cursor, [Cursors.Hand]));
currentXClickPosition = e.X;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following file extensions are treated as CAD files.

1. Scroll mouse wheel to zoom in/out.
2. Double left click to reset the scaling.
3. Right press and drag to pan the view.
3. Left press and drag to pan the view.

## Licenses

Expand Down