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
It's working as expected and the new content is being saved.
But the problem is, Mouse bindings are no more working after resuming application.
Even calling app.EnableMouse(true) manually after Suspend is not working. :(
Any support/clue is very much appreciated. Thanks!
The text was updated successfully, but these errors were encountered:
ajaxray
changed the title
Mouse binding is not working after resuming back from Application.Suspend()
Mouse binding is not working after resuming back from Application.Suspend()
Jan 8, 2021
Thanks for noticing this. The tcell.Screen object is replaced after the Suspend() function returns but I forgot to enable the mouse on that new object. This should be fixed now.
Hello folks,
Need your kind help for geek-life, a CLI To-Do List Manager.
I am trying to edit some content (task detail) using external editor.
So, I am doing this:
Application.Suspend()
for opening the temporary file in vim (or$EDITOR
from env)You may check actual code here.
It's working as expected and the new content is being saved.
But the problem is, Mouse bindings are no more working after resuming application.
Even calling
app.EnableMouse(true)
manually after Suspend is not working. :(Any support/clue is very much appreciated. Thanks!
The text was updated successfully, but these errors were encountered: