From bd136b578655519a0a8dcbd272bd9cde94488fc6 Mon Sep 17 00:00:00 2001 From: Martin Corino Date: Mon, 27 Jul 2026 16:47:43 +0200 Subject: [PATCH 1/2] fix issue #513 --- ext/wxruby3/include/wxRubyApp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/wxruby3/include/wxRubyApp.h b/ext/wxruby3/include/wxRubyApp.h index 37760c08..a67cb5cb 100644 --- a/ext/wxruby3/include/wxRubyApp.h +++ b/ext/wxruby3/include/wxRubyApp.h @@ -79,7 +79,7 @@ class wxRubyApp : public wxApp if (!m_shouldExit && needs_idle_evt) { needs_idle_evt = ProcessIdle(); - if (needs_idle_evt) + if (!needs_idle_evt) break; } } From 7cf8e48dfd3b31a25ba10324244edddfe7cc2829 Mon Sep 17 00:00:00 2001 From: Martin Corino Date: Mon, 27 Jul 2026 16:48:12 +0200 Subject: [PATCH 2/2] bump version --- lib/wx/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wx/version.rb b/lib/wx/version.rb index 634b3024..39671d17 100644 --- a/lib/wx/version.rb +++ b/lib/wx/version.rb @@ -3,5 +3,5 @@ # This software is released under the MIT license. module Wx - WXRUBY_VERSION = '1.8.1' + WXRUBY_VERSION = '1.8.2' end