lanurmi / efte

eFTE is a fork of FTE -- Folding Text Editor
GNU General Public License v2.0
30 stars 11 forks source link

Fix compatiblity with tiling window managers #110

Closed ismaell closed 1 year ago

ismaell commented 1 year ago

Tiling window managers can force the window size to be larger than supported by con_x11, causing either an early abort at ConSetSize, or if compiled with NDEBUG, a segmentation fault down the road.

Instead, just cap X and Y to their maximums. The only consequence is that the window is not fully utilised.

lanurmi commented 1 year ago

Thanks!