-
-
Notifications
You must be signed in to change notification settings - Fork 80
Fix destination icon in file conflict dialog #2656
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
Conversation
This reverts commit 265c691.
libcore/FileConflictDialog.vala
Outdated
|
|
||
| public Files.File source { get; construct; } | ||
| public Files.File destination { get; construct; } | ||
| public Files.File dest_dir { get; construct; } |
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.
These should be private get, no?
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.
I thought construct properties had to be public get but maybe I'm wrong - I'll check. There's probably a lot of other instances with this pattern in my code!
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.
Seems you are right - I've learnt something, thanks. Now fixed.
Fix whitespace Co-authored-by: Leo <[email protected]>
lenemter
left a comment
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.
Fixes the liked issue! Good job 🎉
Fixes #695 (finally)