mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-02 16:49:10 +00:00
[BUGFIX] Fixed heigh on screenshots
This commit is contained in:
@@ -157,7 +157,7 @@ public class BotUI extends JFrame implements ActionListener, ComponentListener,
|
||||
case "Create screenshot":
|
||||
try {
|
||||
Robot robot = new Robot();
|
||||
Rectangle parabotScreen = new Rectangle((int) getLocation().getX(), (int) getLocation().getY() + (menuBar.getHeight() + features.getHeight()), getWidth(), getHeight());
|
||||
Rectangle parabotScreen = new Rectangle((int) getLocation().getX(), (int) getLocation().getY() + (menuBar.getHeight() + file.getHeight()), getWidth(), getHeight() - 43);
|
||||
BufferedImage image = robot.createScreenCapture(parabotScreen);
|
||||
String randString = StringUtils.randomString(10);
|
||||
boolean search = true;
|
||||
|
||||
Reference in New Issue
Block a user