-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Configurable drop target directory on windows #972
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a single comment, looks good otherwise. Thanks!
Pushed an update (mutable instead of const). One thing I noticed: The OSXScreen has its own m_dropTarget member string, with a non-virtual getter to return it. Not sure why it is not virtual? barrier/src/lib/platform/OSXScreen.h Line 102 in e66832c
|
Another small change: Increased log level of a few central messages. There are already quite some "noice" with info messages just when moving cursor between screens ("leaving screen", "entering screen", "switch from x to y" etc), so I though a larger operation such as transferring a file would then also qualify for a info message. By the way, the added sleep in the "Improve drag&drop stability on windows" commit is rather dirty, but seems the following lines were already in the same category. I got a lot of |
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks.
Make drop target directory when
--enable-drag-drop
is active configurable with new option--drop-dir
. Default is Windows Desktop as before.Related to #969 and #970, in the sense that the improve the ability to run as a "portable app" (e.g. copy-deploy with local configuration).