Skip to content

close #1906 #1931

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2513,9 +2513,7 @@ BaseGDL* widget_info( EnvT* e ) {
id = (*static_cast<DLongGDL*> (ev->GetTag(idIx, 0)))[0]; // get its id
for (SizeT i = 0; i < widgetIDList.size(); i++) { //is ID corresponding to any widget in list?
if (widgetIDList.at(i) == id) { //if yes
//IMPORTANT: return ev immediately. This is what permits #1685: an event trapped by WIDGET_EVENT does not behave
//like the same event processed in the evenloop.
return ev;
goto endwait;
}
}
GDLWidget::widgetEventQueue.PushBack(ev);
Expand Down
Loading