Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix preview panel dragging experience #203

Merged
merged 1 commit into from
Nov 15, 2022
Merged
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
10 changes: 5 additions & 5 deletions src/org/jmc/gui/PreviewPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class PreviewPanel extends JPanel implements MouseMotionListener, MouseWh
/**
* Offset of the map, as set by dragging the map around.
*/
private int shift_x,shift_y;
private float shift_x,shift_y;
/**
* Zoom level of the map.
*/
Expand Down Expand Up @@ -449,8 +449,8 @@ public Rectangle getChunkBounds()
{
Rectangle ret=new Rectangle();

ret.x=(-shift_x/64)-1;
ret.y=(-shift_y/64)-1;
ret.x=((int)-shift_x/64)-1;
ret.y=((int)-shift_y/64)-1;
ret.width=(int) Math.ceil((getWidth()/zoom_level)/64.0)+1;
ret.height=(int) Math.ceil((getHeight()/zoom_level)/64.0)+1;

Expand Down Expand Up @@ -771,8 +771,8 @@ public void mouseDragged(MouseEvent e) {

if(moving_map)
{
shift_x+=(x-last_x)/zoom_level;
shift_y+=(y-last_y)/zoom_level;
shift_x+=(float)(x-last_x)/zoom_level;
shift_y+=(float)(y-last_y)/zoom_level;
mmdanggg2 marked this conversation as resolved.
Show resolved Hide resolved

last_x=x;
last_y=y;
Expand Down