We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8df1753 + 5c59ca0 commit 6b17bd9Copy full SHA for 6b17bd9
1 file changed
JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_Windowing.cpp
@@ -1637,6 +1637,14 @@ class LinuxComponentPeer : public ComponentPeer
1637
hints->min_height = hints->max_height = hints->height;
1638
hints->flags |= PMinSize | PMaxSize;
1639
}
1640
+ /* ----------- OPEN_EPHYS ADDITION ----------- */
1641
+ else
1642
+ {
1643
+ hints->min_width = 484;
1644
+ hints->min_height = 437;
1645
+ hints->flags |= PMinSize;
1646
+ }
1647
+ /* --------- END OPEN_EPHYS ADDITION --------- */
1648
1649
XSetWMNormalHints (display, windowH, hints);
1650
XFree (hints);
0 commit comments