-
Notifications
You must be signed in to change notification settings - Fork 57
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
With VTE 0.54, hitting X button of one tab closes all tabs #61
Comments
Inside (Perhaps should be conditional to vte-0.54, leaving the old code path for older vte versions, I haven't tested that.) Note though that |
Probably a fix along the lines of https://bugs.launchpad.net/sakura/+bug/1790317 would be better, that is, to explicitly disconnect the child-exited signal before removing vte from the widget hierarchy. (I'd let you guys play with it, I'm not planning to further work on this issue.) |
This is addressed in a4eaef4 as well. However, for this issue please test and reopen if disconnecting the signal on |
Anything wrong with a4eaef4? That works fine for me. |
My mistake. I was running on wrong binary to test it and found out the bug "persists". |
Original bug report: https://bugs.archlinux.org/task/60035
gdb indicates that running
gtk_notebook_remove_page(GTK_NOTEBOOK(terminal->notebook), term->index)
for the closing tab triggers another child-exited signal, thus causing the next tab to be closed. This procedure is going through recursively and then all tabs are closed.The relevant change in VTE might be this: https://gitlab.gnome.org/GNOME/vte/commit/0276859709692ec53f35a8cc158d7553a195c730
The text was updated successfully, but these errors were encountered: