Skip to content

Commit

Permalink
Increase image pixel size for private messages
Browse files Browse the repository at this point in the history
  • Loading branch information
zapek committed Dec 26, 2024
1 parent 7ac5567 commit 1f149f8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ public class MessagingWindowController implements WindowController
{
private static final Logger log = LoggerFactory.getLogger(MessagingWindowController.class);

private static final int IMAGE_WIDTH_MAX = 640;
private static final int IMAGE_HEIGHT_MAX = 480;
private static final int IMAGE_WIDTH_MAX = 800;
private static final int IMAGE_HEIGHT_MAX = 600;
private static final int MESSAGE_MAXIMUM_SIZE = 196_000; // XXX: maximum size for normal messages? check if correct

private static final KeyCodeCombination PASTE_KEY = new KeyCodeCombination(KeyCode.V, KeyCombination.SHORTCUT_DOWN);
Expand Down

0 comments on commit 1f149f8

Please sign in to comment.