My problem is that I want to disable the window resizing, to achieve it I used following code in the ofApp::update:
w = ofGetWidth();
h = ofGetHeight();
if (w != 540 || h != 740) ofSetWindowShape(540, 740);
Sadly it does not effect. How can I completely disable window resizing? I was looking for it in the documentation, but I couldn’t find it.
I am using Arch Linux but I do not think it is connected with the OS.
Thanks in advance for any sort of help.