-
Notifications
You must be signed in to change notification settings - Fork 914
Fix #2399 - Remove redundant drawable ic_search_black_24dp #2400
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
| <item name="closeIcon">@drawable/ic_close_black_24dp</item> | ||
| <!-- Search button icon --> | ||
| <item name="searchIcon">@drawable/ic_search_black_24dp</item> | ||
| <item name="searchIcon">@drawable/ic_search_white_24dp</item> |
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.
Err why did you remove it
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.
@abishekvashok, sorry but you are addressing the drawable file or styles.xml
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.
Styles.xml
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.
@abishekvashok, if the drawable file ic_search_black_24dp is removed then referencing it in styles.xml will produce error. And drawable file ic_search_black_24dp must be deleted as it is currently not used anywhere in the project.
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.
The drawable was being used. You removed it's use and deleted it. See the entire diff
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.
@abishekvashok, I had to remove the use of the drawable file because of this
So I had to create ic_search_white_24dp
* Merging development into master (fossasia#2156) * Fix fossasia#2151-On back press operation issue resolved. (fossasia#2152) * Fix fossasia#2154-Fixes issues for favourite section, security feature and SingleMediaActivity. (fossasia#2155) * chore: Accept license agreement for SDK 26 to travis ci (fossasia#2418) (fossasia#2419) * Fix fossasia#2410 Albums get selected properly. (fossasia#2415) * Fix fossasia#1810 LongPress works correctly for selecting multiple photos in … (fossasia#2409) * Fix fossasia#1810 LongPress works correctly for selecting multiple photos in FavouritesActivity. * Corrected else brackets. * Corrected(Moved Up). * Fix fossasia#2399 - Remove redundant drawable ic_search_black_24dp (fossasia#2400) * Replaced Toasts with SnackBars. (fossasia#2391) * Readme improvement (fossasia#2327) * readme_ * readme_improved

Fixed #2399
Changes: Unused drawable file ic_search_black_24dp.xml is deleted.