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
Version 0.4.6 crashes quite often with message Plugin Window Header Title unexpectedly left the panel, do you want to restart it
Debugging it leads to a NULL pointer in windowck-title.c, line 108 (top_window == NULL).
Maybe changing the line to while (top_window && top_window->data != window && top_window != bottom_window) {
fixes the bug. At least it worked on my computer so far.
The text was updated successfully, but these errors were encountered:
Version 0.4.6 crashes quite often with message
Plugin Window Header Title unexpectedly left the panel, do you want to restart it
Debugging it leads to a NULL pointer in windowck-title.c, line 108 (
top_window == NULL
).Maybe changing the line to
while (top_window && top_window->data != window && top_window != bottom_window) {
fixes the bug. At least it worked on my computer so far.
The text was updated successfully, but these errors were encountered: