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
{{ message }}
This repository has been archived by the owner on Sep 22, 2020. It is now read-only.
When I moved a file to clipboard, I noticed there was 3 full refreshes in the procedure: 1 caused by file list change, 1 by pop up dialog, 1 by file list update or pop up dialog disappeared. And the operation of paste file from clipboard will have 2 full refreshes too.
I think the original method caused 3 refreshes for one operation is a little bit too much, so I changed the pop up dialog to the top message same with the "bookmark added" method. Now there will be only one full refresh for each operation.
Original:
InfoMessage:inform("Moving files from clipboard...", DINFO_NODELAY, 0, MSG_AUX)
Now:
InfoMessage:drawTopMsg(_("Moving files from clipboard..."))
I knew some people may prefer the normal dialog instead of the top message, so I'm just suggesting an option here. Whether to change it depend on whether you think the 3 full refreshes are OK.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I moved a file to clipboard, I noticed there was 3 full refreshes in the procedure: 1 caused by file list change, 1 by pop up dialog, 1 by file list update or pop up dialog disappeared. And the operation of paste file from clipboard will have 2 full refreshes too.
I think the original method caused 3 refreshes for one operation is a little bit too much, so I changed the pop up dialog to the top message same with the "bookmark added" method. Now there will be only one full refresh for each operation.
Original:
InfoMessage:inform("Moving files from clipboard...", DINFO_NODELAY, 0, MSG_AUX)
Now:
InfoMessage:drawTopMsg(_("Moving files from clipboard..."))
I knew some people may prefer the normal dialog instead of the top message, so I'm just suggesting an option here. Whether to change it depend on whether you think the 3 full refreshes are OK.
The text was updated successfully, but these errors were encountered: