Borderless, marginless, less than 128x128px Processing window
in
Programming Questions
•
3 years ago
Hello, I'm trying to have a Processing window running on coordinates 0, 0 and with exact size of 106x60 pixels
I'm almost sucessful after add this lines inside draw()
- frame.setLocation(0,0);
- frame.setAlwaysOnTop(true);
- frame.setSize(106,60);
and this ones at the end
- public void init() {
- frame.removeNotify();
- frame.setUndecorated(true);
- frame.addNotify();
- super.init();
- }
I still can't override default processing grey margin for apps smaller than 128x128 pixels
Does anybody know how to do that?
Thanks
1
