You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code snippet crashes on Catalina
but works fine on High Sierra, various linux distros,
and win10. Tried with ruby 2.4.0 and 2.6.4. Using
fxruby-1.6.42
#!/usr/bin/env ruby
require 'fox16'
include Fox
application = FXApp.new("FXMatrix", "BugTest")
main = FXMainWindow.new(application, "Test", nil, nil, DECOR_ALL)
test_matrix = FXMatrix.new(main, 8,
MATRIX_BY_COLUMNS|LAYOUT_FILL_Y)
application.create()
main.show(PLACEMENT_SCREEN)
application.run()