diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-02-23 22:21:41 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2013-02-23 22:21:41 +0100 |
commit | ff8a988bc749278b3b49db50f5da01d4d996f340 (patch) | |
tree | ab2f2bccbbb78868d3e260ab834c44d8349861d7 /test/test_panes.rb | |
parent | e417bd57d7c213f2a50a94ec8690ae76c7f0ebba (diff) | |
download | ffi-efl-ff8a988bc749278b3b49db50f5da01d4d996f340.zip ffi-efl-ff8a988bc749278b3b49db50f5da01d4d996f340.tar.gz |
add missing 'delete,request' smart callback in some tests
Diffstat (limited to 'test/test_panes.rb')
-rw-r--r-- | test/test_panes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_panes.rb b/test/test_panes.rb index db2de03..1554df3 100644 --- a/test/test_panes.rb +++ b/test/test_panes.rb @@ -13,6 +13,7 @@ class MyWin < Elm::ElmWin def initialize super(nil, "Greetings") do title_set "Hello, World!" + smart_callback_add("delete,request", ->(*_) { Elm.exit }, nil) resize 320, 400 show end |